* Restored hungarian date formats
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Fri, 16 Nov 2007 18:15:16 +0000 (18:15 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Fri, 16 Nov 2007 18:15:16 +0000 (18:15 +0000)
languages/messages/MessagesHu.php

index 109e56d..9b689f6 100644 (file)
@@ -113,60 +113,14 @@ $specialPageAliases = array(
        'Resetpass'                 => array( 'Jelszócsere' ),
        'Withoutinterwiki'          => array( 'Belső_wiki_nélkül' ),
 );
-
-/**
- * A list of date format preference keys which can be selected in user
- * preferences. New preference keys can be added, provided they are supported
- * by the language class's timeanddate(). Only the 5 keys listed below are
- * supported by the wikitext converter (DateFormatter.php).
- *
- * The special key "default" is an alias for either dmy or mdy depending on
- * $wgAmericanDates
- */
 $datePreferences = array(
-       'default',
-       'mdy',
-       'dmy',
        'ymd',
        '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 or mdy';
+$defaultDateFormat = 'ymd';
 
-/**
- * Associative array mapping old numeric date formats, which may still be
- * stored in user preferences, to the new string formats.
- */
-$datePreferenceMigrationMap = array(
-       'default',
-       'mdy',
-       'dmy',
-       'ymd'
-);
-
-/**
- * These are formats for dates generated by MediaWiki (as opposed to the wikitext
- * DateFormatter). Documentation for the format string can be found in
- * Language.php, search for sprintfDate.
- *
- * This array is automatically inherited by all subclasses. Individual keys can be
- * overridden.
- */
 $dateFormats = array(
-       'mdy time' => 'H:i',
-       'mdy date' => 'F j, Y',
-       'mdy both' => 'H:i, F j, Y',
-
-       'dmy time' => 'H:i',
-       'dmy date' => 'j F Y',
-       'dmy both' => 'H:i, j F Y',
-
        'ymd time' => 'H:i',
        'ymd date' => 'Y. F j.',
        'ymd both' => 'Y. F j., H:i',