* (bug 33367) Gendered namespaces for Czech
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Sun, 25 Dec 2011 12:34:52 +0000 (12:34 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Sun, 25 Dec 2011 12:34:52 +0000 (12:34 +0000)
RELEASE-NOTES-1.19
languages/messages/MessagesCs.php

index 3f6c438..4e1b16e 100644 (file)
@@ -239,6 +239,7 @@ changes to languages because of Bugzilla reports.
 * (bug 29405, bug 30809) Lower diacritics are invisible in titles in Indic
   languages Assamese, Bengali, Hindi, Malyalam and Odiya.
 * (bug 32826) Titles in indic languages are partially cut.
+* (bug 33367) Gendered namespaces for Czech
 
 === Other changes in 1.19 ===
 * jquery.mwPrototypes module was renamed to jquery.mwExtension.
index beade33..2763c46 100644 (file)
@@ -49,8 +49,6 @@ $namespaceNames = array(
 );
 
 $namespaceAliases = array(
-    'Uživatelka'            => NS_USER,           # female complement
-    'Diskuse_s_uživatelkou' => NS_USER_TALK,      # female complement
     'Uživatel_diskuse'      => NS_USER_TALK,      # old literal translation backward compatibility
     'Uživatelka_diskuse'    => NS_USER_TALK,      # female complement to old literal translation style
     '$1_diskuse'            => NS_PROJECT_TALK,   # old literal translation backward compatibility
@@ -61,6 +59,11 @@ $namespaceAliases = array(
     'Kategorie_diskuse'     => NS_CATEGORY_TALK,  # old literal translation backward compatibility
 );
 
+$namespaceGenderAliases = array(
+    NS_USER      => array( 'male' => 'Uživatel', 'female' => 'Uživatelka' ),
+    NS_USER_TALK => array( 'male' => 'Diskuse_s_uživatelem', 'female' => 'Diskuse_s_uživatelkou' ),
+);
+
 /**
  * Date formats list for Special:Preferences
  * see $dateFormats for definitions