jenkins-bot has submitted this change and it was merged.

Change subject: Lower case "multiple/unknown language(s)" and "no linguistic 
content"
......................................................................


Lower case "multiple/unknown language(s)" and "no linguistic content"

I counted the files in the CldrNames directory with these two regular
expressions:

'(mul|und|zxx)' => '\p{Ll}
'(mul|und|zxx)' => '\p{Lu}

Result: 141 of the strings for these three non-language codes start
with a lower case letter. 52 start with an upper case letter.

The strings are used in different contexts. In some of them it's
nice to have them all start with an upper case letter for *aestetic*
purposes, but this should be done with CSS (and must, because most
do not start with an upper case letter, see the counts above).

Discussion:
https://www.wikidata.org/w/index.php?title=Wikidata:Contact_the_development_team&oldid=359869978#Varying_caps_in_English_labels_for_language_codes_code_mul.2Czzx.2Cukn

Change-Id: Ia7a13540c39420a279b90d33d2317c87c1761263
---
M LocalNames/LocalNamesEn.php
1 file changed, 5 insertions(+), 4 deletions(-)

Approvals:
  Nikerabbit: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/LocalNames/LocalNamesEn.php b/LocalNames/LocalNamesEn.php
index e149fd0..f8907dc 100644
--- a/LocalNames/LocalNamesEn.php
+++ b/LocalNames/LocalNamesEn.php
@@ -155,9 +155,10 @@
        'zh-tw' => 'Chinese (Taiwan)',
        'zh-yue' => 'Cantonese', # language redirect
 
-       /* http://unicode.org/cldr/trac/ticket/9664
-        * Added 2016-07-27.
+       /* Upper case in CLDR, but should be lower case
+        * http://unicode.org/cldr/trac/ticket/9664
         */
-       'mul' => 'Multiple languages',
-       'und' => 'Unknown language',
+       'mul' => 'multiple languages',
+       'und' => 'unknown language',
+       'zxx' => 'no linguistic content',
 ];

-- 
To view, visit https://gerrit.wikimedia.org/r/301766
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia7a13540c39420a279b90d33d2317c87c1761263
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/cldr
Gerrit-Branch: master
Gerrit-Owner: Thiemo Mättig (WMDE) <[email protected]>
Gerrit-Reviewer: Nikerabbit <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to