I18N: Correct encoding for `wp-includes/widgets/class-wp-widget-calendar.php`, accidentally saved in ANSI instead of UTF-8.

See #47485.

git-svn-id: https://develop.svn.wordpress.org/trunk@45493 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-06-05 15:08:42 +00:00
parent 3fc93cbbb6
commit 62385fdd00
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class WP_Widget_Calendar extends WP_Widget {
public function __construct() {
$widget_ops = array(
'classname' => 'widget_calendar',
'description' => __( 'A calendar of your sites posts.' ),
'description' => __( 'A calendar of your sites posts.' ),
'customize_selective_refresh' => true,
);
parent::__construct( 'calendar', __( 'Calendar' ), $widget_ops );