diff options
author | alecpl <alec@alec.pl> | 2008-04-10 11:44:01 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-10 11:44:01 +0000 |
commit | 7479cc65702171661140cd4546a29a32599d948a (patch) | |
tree | a79e433f86f27381d8b74c5f8ba493ee5a2854be /program/localization/en_US | |
parent | 7be658c0eb500f4a5a239b5cb2611195687fc703 (diff) |
#1484980: fixed problem with month abbreviations localization (problem with May and maybe others)
Diffstat (limited to 'program/localization/en_US')
-rw-r--r-- | program/localization/en_US/labels.inc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/program/localization/en_US/labels.inc b/program/localization/en_US/labels.inc index bd88e52f9..2e5f1bab2 100644 --- a/program/localization/en_US/labels.inc +++ b/program/localization/en_US/labels.inc @@ -103,18 +103,18 @@ $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; // months long -$labels['january'] = 'January'; -$labels['february'] = 'February'; -$labels['march'] = 'March'; -$labels['april'] = 'April'; -$labels['may'] = 'May'; -$labels['june'] = 'June'; -$labels['july'] = 'July'; -$labels['august'] = 'August'; -$labels['september'] = 'September'; -$labels['october'] = 'October'; -$labels['november'] = 'November'; -$labels['december'] = 'December'; +$labels['longjan'] = 'January'; +$labels['longfeb'] = 'February'; +$labels['longmar'] = 'March'; +$labels['longapr'] = 'April'; +$labels['longmay'] = 'May'; +$labels['longjun'] = 'June'; +$labels['longjul'] = 'July'; +$labels['longaug'] = 'August'; +$labels['longsep'] = 'September'; +$labels['longoct'] = 'October'; +$labels['longnov'] = 'November'; +$labels['longdec'] = 'December'; $labels['today'] = 'Today'; |