From: MatmaRex Date: Sun, 18 Aug 2013 15:07:37 +0000 (+0200) Subject: Adjust two new date formats for Polish (pl) X-Git-Tag: 1.31.0-rc.0~18942 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=34361bbcbf148efeac69e76799fd1607c893b61a;p=lhc%2Fweb%2Fwiklou.git Adjust two new date formats for Polish (pl) * monthonly - happens to be the same as in English, but nonetheless copied explictly to avoid confusion in the future, as it's the only one to use the nominative form of month name instead of genitive * pretty - needs to use genitive month name instead of nominative; same for dmy, mdy and ymd variants, as any form with different order would be gramatically awkward I am a native Polish speaker. Change-Id: Ic253f590b0a60196cf3d98ce8785b151bb576946 --- diff --git a/languages/messages/MessagesPl.php b/languages/messages/MessagesPl.php index 350ba70236..7ee2575b74 100644 --- a/languages/messages/MessagesPl.php +++ b/languages/messages/MessagesPl.php @@ -96,15 +96,21 @@ $namespaceGenderAliases = array( $dateFormats = array( 'mdy time' => 'H:i', 'mdy date' => 'M j, Y', + 'mdy monthonly' => 'F Y', 'mdy both' => 'H:i, M j, Y', + 'mdy pretty' => 'j xg', 'dmy time' => 'H:i', 'dmy date' => 'j M Y', + 'dmy monthonly' => 'F Y', 'dmy both' => 'H:i, j M Y', + 'dmy pretty' => 'j xg', 'ymd time' => 'H:i', 'ymd date' => 'Y M j', + 'ymd monthonly' => 'Y F', 'ymd both' => 'H:i, Y M j', + 'ymd pretty' => 'j xg', ); $fallback8bitEncoding = 'iso-8859-2';