* (bug 10333) Correct date format in Slovenian
This commit is contained in:
parent
4a55dcdda8
commit
600f677d17
2 changed files with 27 additions and 1 deletions
|
|
@ -202,6 +202,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
|
|||
overlong key errors.
|
||||
* Fixed zero-padding issues with MySQL 5 binary schema
|
||||
* (bug 10344) Don't follow a redirect after changing its protection level
|
||||
* (bug 10333) Correct date format in Slovenian
|
||||
|
||||
== API changes since 1.10 ==
|
||||
|
||||
|
|
@ -279,6 +280,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
|
|||
* Romanian (ro)
|
||||
* Russian (ru)
|
||||
* Slovak (sk)
|
||||
* Slovenian (sl)
|
||||
* Shona (sn)
|
||||
* Somali (so)
|
||||
* Albanian (sq)
|
||||
|
|
|
|||
|
|
@ -37,7 +37,31 @@ $namespaceNames = array(
|
|||
NS_CATEGORY_TALK => 'Pogovor_o_kategoriji'
|
||||
);
|
||||
|
||||
$datePreferences = false;
|
||||
$datePreferences = array(
|
||||
'default',
|
||||
'dmy short',
|
||||
'dmy full',
|
||||
'ISO 8601',
|
||||
);
|
||||
|
||||
/**
|
||||
* The date format to use for generated dates in the user interface.
|
||||
* This may be one of the above date preferences, or the special value
|
||||
* "dmy or mdy", which uses mdy if $wgAmericanDates is true, and dmy
|
||||
* if $wgAmericanDates is false.
|
||||
*/
|
||||
$defaultDateFormat = 'dmy full';
|
||||
|
||||
$dateFormats = array(
|
||||
'dmy short time' => 'H:i',
|
||||
'dmy short date' => 'j. F Y',
|
||||
'dmy short both' => 'H:i, j. M Y',
|
||||
|
||||
'dmy full time' => 'H:i',
|
||||
'dmy full date' => 'j. F Y',
|
||||
'dmy full both' => 'H:i, j. F Y',
|
||||
);
|
||||
|
||||
$fallback8bitEncoding = "iso-8859-2";
|
||||
$separatorTransformTable = array(',' => '.', '.' => ',' );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue