Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -239,6 +239,7 @@ |
240 | 240 | * (bug 29405, bug 30809) Lower diacritics are invisible in titles in Indic |
241 | 241 | languages Assamese, Bengali, Hindi, Malyalam and Odiya. |
242 | 242 | * (bug 32826) Titles in indic languages are partially cut. |
| 243 | +* (bug 33367) Gendered namespaces for Czech |
243 | 244 | |
244 | 245 | === Other changes in 1.19 === |
245 | 246 | * jquery.mwPrototypes module was renamed to jquery.mwExtension. |
Index: trunk/phase3/languages/messages/MessagesCs.php |
— | — | @@ -49,8 +49,6 @@ |
50 | 50 | ); |
51 | 51 | |
52 | 52 | $namespaceAliases = array( |
53 | | - 'Uživatelka' => NS_USER, # female complement |
54 | | - 'Diskuse_s_uživatelkou' => NS_USER_TALK, # female complement |
55 | 53 | 'Uživatel_diskuse' => NS_USER_TALK, # old literal translation backward compatibility |
56 | 54 | 'Uživatelka_diskuse' => NS_USER_TALK, # female complement to old literal translation style |
57 | 55 | '$1_diskuse' => NS_PROJECT_TALK, # old literal translation backward compatibility |
— | — | @@ -61,6 +59,11 @@ |
62 | 60 | 'Kategorie_diskuse' => NS_CATEGORY_TALK, # old literal translation backward compatibility |
63 | 61 | ); |
64 | 62 | |
| 63 | +$namespaceGenderAliases = array( |
| 64 | + NS_USER => array( 'male' => 'Uživatel', 'female' => 'Uživatelka' ), |
| 65 | + NS_USER_TALK => array( 'male' => 'Diskuse_s_uživatelem', 'female' => 'Diskuse_s_uživatelkou' ), |
| 66 | +); |
| 67 | + |
65 | 68 | /** |
66 | 69 | * Date formats list for Special:Preferences |
67 | 70 | * see $dateFormats for definitions |