From d7279b073ac8fdd4685b96c9cb8e2990727c36bd Mon Sep 17 00:00:00 2001 From: rboren Date: Sun, 6 Feb 2005 20:45:10 +0000 Subject: [PATCH] Fix May abbreviation translation. Patch by morganiq. http://mosquito.wordpress.org/view.php?id=722 git-svn-id: http://svn.automattic.com/wordpress/trunk@2232 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/locale.php | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/wp-includes/locale.php b/wp-includes/locale.php index 8e42d7db9e..7af4deac4f 100644 --- a/wp-includes/locale.php +++ b/wp-includes/locale.php @@ -48,17 +48,23 @@ $month['10'] = __('October'); $month['11'] = __('November'); $month['12'] = __('December'); -// Abbreviations for each month. -$month_abbrev[__('January')] = __('Jan'); -$month_abbrev[__('February')] = __('Feb'); -$month_abbrev[__('March')] = __('Mar'); -$month_abbrev[__('April')] = __('Apr'); -$month_abbrev[__('May')] = __('May'); -$month_abbrev[__('June')] = __('Jun'); -$month_abbrev[__('July')] = __('Jul'); -$month_abbrev[__('August')] = __('Aug'); -$month_abbrev[__('September')] = __('Sep'); -$month_abbrev[__('October')] = __('Oct'); -$month_abbrev[__('November')] = __('Nov'); -$month_abbrev[__('December')] = __('Dec'); +// Abbreviations for each month. Uses the same hack as above to get around the +// 'May' duplication. +$month_abbrev[__('January')] = __('Jan_January_abbreviation'); +$month_abbrev[__('February')] = __('Feb_February_abbreviation'); +$month_abbrev[__('March')] = __('Mar_March_abbreviation'); +$month_abbrev[__('April')] = __('Apr_April_abbreviation'); +$month_abbrev[__('May')] = __('May_May_abbreviation'); +$month_abbrev[__('June')] = __('Jun_June_abbreviation'); +$month_abbrev[__('July')] = __('Jul_July_abbreviation'); +$month_abbrev[__('August')] = __('Aug_August_abbreviation'); +$month_abbrev[__('September')] = __('Sep_September_abbreviation'); +$month_abbrev[__('October')] = __('Oct_October_abbreviation'); +$month_abbrev[__('November')] = __('Nov_November_abbreviation'); +$month_abbrev[__('December')] = __('Dec_December_abbreviation'); + +foreach ($month_abbrev as $month_ => $month_abbrev_) { + $month_abbrev[$month_] = preg_replace('/_.+_abbreviation$/', '', $month_abbrev_); +} + ?> \ No newline at end of file