Fix May abbreviation translation. Patch by morganiq. http://mosquito.wordpress.org/view.php?id=722

git-svn-id: https://develop.svn.wordpress.org/trunk@2232 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-02-06 20:45:10 +00:00
parent 9944883d86
commit fc7b2cf0ff
1 changed files with 19 additions and 13 deletions

View File

@ -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_);
}
?>