Index: trunk/phase3/languages/LanguageCs.php |
— | — | @@ -10,8 +10,8 @@ |
11 | 11 | -1 => "Speciální", # FIXME Is it safe to change this? |
12 | 12 | 0 => "", |
13 | 13 | 1 => "Diskuse", # neb diskutuj? |
14 | | - 2 => "Wikipediista", |
15 | | - 3 => "Wikipediista_diskuse", |
| 14 | + 2 => "Wikipedista", |
| 15 | + 3 => "Wikipedista_diskuse", |
16 | 16 | 4 => "Wikipedie", |
17 | 17 | 5 => "Wikipedie_diskuse", |
18 | 18 | 6 => "Soubor", #FIXME: Check the magic for Image: and Media: |
— | — | @@ -881,6 +881,8 @@ |
882 | 882 | } |
883 | 883 | if( 0 == strcasecmp( "Special", $text ) ) return -1; |
884 | 884 | if( 0 == strcasecmp( "Wikipedia", $text ) ) return 4; |
| 885 | + if( 0 == strcasecmp( "Wikipediista", $text ) ) return 2; |
| 886 | + if( 0 == strcasecmp( "Wikipediista_diskuse", $text ) ) return 3; |
885 | 887 | return false; |
886 | 888 | } |
887 | 889 | |