From 3f9bf72d69ad3640eb99f81a289ee279a715afb7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 5 Jun 2019 15:09:53 +0000 Subject: [PATCH] I18N: Correct encoding for `wp-includes/widgets/class-wp-widget-calendar.php`, accidentally saved in ANSI instead of UTF-8. See #47485. Built from https://develop.svn.wordpress.org/trunk@45493 git-svn-id: http://core.svn.wordpress.org/trunk@45304 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/widgets/class-wp-widget-calendar.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 7dee9c7df1..5b14f39a90 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45492'; +$wp_version = '5.3-alpha-45493'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets/class-wp-widget-calendar.php b/wp-includes/widgets/class-wp-widget-calendar.php index 1783ff371d..ab80033621 100644 --- a/wp-includes/widgets/class-wp-widget-calendar.php +++ b/wp-includes/widgets/class-wp-widget-calendar.php @@ -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 site’s posts.' ), + 'description' => __( 'A calendar of your site’s posts.' ), 'customize_selective_refresh' => true, ); parent::__construct( 'calendar', __( 'Calendar' ), $widget_ops );