From 2d885b5fb2b016d83aac7422defd1b49f271835c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Fri, 16 Nov 2007 18:15:16 +0000 Subject: [PATCH] * Restored hungarian date formats --- languages/messages/MessagesHu.php | 48 +------------------------------ 1 file changed, 1 insertion(+), 47 deletions(-) diff --git a/languages/messages/MessagesHu.php b/languages/messages/MessagesHu.php index 109e56d01d..9b689f6cec 100644 --- a/languages/messages/MessagesHu.php +++ b/languages/messages/MessagesHu.php @@ -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', -- 2.20.1