r23399 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r23398‎ | r23399 | r23400 >
Date:19:24, 25 June 2007
Author:raymond
Status:old
Tags:
Comment:
* (bug 10333) Correct date format in Slovenian
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/languages/messages/MessagesSl.php (modified) (history)

Diff [purge]

Index: trunk/phase3/languages/messages/MessagesSl.php
@@ -37,7 +37,31 @@
3838 NS_CATEGORY_TALK => 'Pogovor_o_kategoriji'
3939 );
4040
41 -$datePreferences = false;
 41+$datePreferences = array(
 42+ 'default',
 43+ 'dmy short',
 44+ 'dmy full',
 45+ 'ISO 8601',
 46+);
 47+
 48+/**
 49+ * The date format to use for generated dates in the user interface.
 50+ * This may be one of the above date preferences, or the special value
 51+ * "dmy or mdy", which uses mdy if $wgAmericanDates is true, and dmy
 52+ * if $wgAmericanDates is false.
 53+ */
 54+$defaultDateFormat = 'dmy full';
 55+
 56+$dateFormats = array(
 57+ 'dmy short time' => 'H:i',
 58+ 'dmy short date' => 'j. F Y',
 59+ 'dmy short both' => 'H:i, j. M Y',
 60+
 61+ 'dmy full time' => 'H:i',
 62+ 'dmy full date' => 'j. F Y',
 63+ 'dmy full both' => 'H:i, j. F Y',
 64+);
 65+
4266 $fallback8bitEncoding = "iso-8859-2";
4367 $separatorTransformTable = array(',' => '.', '.' => ',' );
4468
Index: trunk/phase3/RELEASE-NOTES
@@ -202,6 +202,7 @@
203203 overlong key errors.
204204 * Fixed zero-padding issues with MySQL 5 binary schema
205205 * (bug 10344) Don't follow a redirect after changing its protection level
 206+* (bug 10333) Correct date format in Slovenian
206207
207208 == API changes since 1.10 ==
208209
@@ -279,6 +280,7 @@
280281 * Romanian (ro)
281282 * Russian (ru)
282283 * Slovak (sk)
 284+* Slovenian (sl)
283285 * Shona (sn)
284286 * Somali (so)
285287 * Albanian (sq)

Follow-up revisions

RevisionCommit summaryAuthorDate
r23407Merged revisions 23203-23405 via svnmerge from...david23:00, 25 June 2007

Status & tagging log