From d3312bc278e1c0bfee0177f0e995f8bffe3f0974 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 22 Aug 2016 21:33:28 +0000 Subject: [PATCH] Locale: declare the `$month_genitive` field on `WP_Locale`. See #37771. Built from https://develop.svn.wordpress.org/trunk@38316 git-svn-id: http://core.svn.wordpress.org/trunk@38257 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-locale.php | 8 ++++++++ wp-includes/version.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-locale.php b/wp-includes/class-wp-locale.php index e8dcfc6488..a8a00f4409 100644 --- a/wp-includes/class-wp-locale.php +++ b/wp-includes/class-wp-locale.php @@ -59,6 +59,14 @@ class WP_Locale { */ public $month; + /** + * Stores the translated strings for the month names in genitive case, if the locale specifies. + * + * @since 4.4.0 + * @var array + */ + public $month_genitive; + /** * Stores the translated strings for the abbreviated month names. * diff --git a/wp-includes/version.php b/wp-includes/version.php index d255b0ca0f..8217559d31 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38315'; +$wp_version = '4.7-alpha-38316'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.