From: Niklas Laxström Date: Mon, 1 Jun 2009 11:00:38 +0000 (+0000) Subject: Add proper dateformats too, bug 18308 X-Git-Tag: 1.31.0-rc.0~41571 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22sites_tous%22%29%20.%20%22?a=commitdiff_plain;h=5b921488cd84c8720633d0fbcd5442c62c1766d5;p=lhc%2Fweb%2Fwiklou.git Add proper dateformats too, bug 18308 --- diff --git a/languages/messages/MessagesOc.php b/languages/messages/MessagesOc.php index 0fda31c0a5..abbbaad521 100644 --- a/languages/messages/MessagesOc.php +++ b/languages/messages/MessagesOc.php @@ -240,18 +240,18 @@ $magicWords = array( 'pagesize' => array( '1', 'TALHAPAGINA', 'PAGESIZE' ), ); -$dateFormats = array( - 'mdy time' => 'H:i', - 'mdy date' => 'M j, Y', - 'mdy both' => 'M j, Y "a" H:i', +$datePreferences = array( + 'default', + 'oc normal', + 'ISO 8601', +); - 'dmy time' => 'H:i', - 'dmy date' => 'j M Y', - 'dmy both' => 'j M Y "a" H:i', +$defaultDateFormat = 'oc normal'; - 'ymd time' => 'H:i', - 'ymd date' => 'Y M j', - 'ymd both' => 'Y M j "a" H:i', +$dateFormats = array( + 'oc normal time' => 'H.i', + 'oc normal date' => 'j F "de" Y', + 'oc normal both' => 'j F "de" Y "a" H.i', ); $separatorTransformTable = array( ',' => "\xc2\xa0", '.' => ',' );