From 1f4a29f4ecc565dd8354c40aa13b2772da138469 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 28 Jul 2008 05:25:25 +0000 Subject: [PATCH] Revert r38016, r38018 (change of $wgTranslateNumerals defaults). There was no explanation given of why it should be forced to off by default for every language... --- RELEASE-NOTES | 2 -- includes/DefaultSettings.php | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 4e74b24190..64e8aed69a 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -23,8 +23,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * $wgExemptFromUserRobotsControl is an array of namespaces to be exempt from the effect of the new __INDEX__/__NOINDEX__ magic words. (Default: null, ex- empt all content namespaces.) -* $wgTranslateNumerals is now set to false by default. Those who wants to use - the Eastern Arabic numerals should set it to true. === New features in 1.14 === diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 4f77d53d43..2cc0672eae 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -833,7 +833,7 @@ $wgAmericanDates = false; * For Hindi and Arabic use local numerals instead of Western style (0-9) * numerals in interface. */ -$wgTranslateNumerals = false; +$wgTranslateNumerals = true; /** * Translation using MediaWiki: namespace. -- 2.20.1