Index: trunk/extensions/UploadWizard/UploadWizard.alias.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /* |
4 | 4 | * Allows the special page title to be translated to another language. |
5 | 5 | * The page title can be customized into another language |
Index: trunk/extensions/UploadWizard/js/mw.LanguageUpWiz.js |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | mw.addMessages({ |
3 | | - "mwe-code-unknown": "Unknown language" |
| 3 | + "mwe-upwiz-code-unknown": "Unknown language" |
4 | 4 | }); |
5 | 5 | |
6 | 6 | /** |
Index: trunk/extensions/UploadWizard/js/mw.UploadWizard.js |
— | — | @@ -73,8 +73,8 @@ |
74 | 74 | "mwe-upwiz-cancel": "Cancel", |
75 | 75 | "mwe-upwiz-change": "(change)", |
76 | 76 | |
77 | | - "mwe-fileexists" : "A file with this name exists already. Please check <b><tt>$1<\/tt><\/b> if you are not sure if you want to replace it.", |
78 | | - "mwe-thumbnail-more" : "Enlarge", |
| 77 | + "mwe-upwiz-fileexists" : "A file with this name exists already. Please check <b><tt>$1<\/tt><\/b> if you are not sure if you want to replace it.", |
| 78 | + "mwe-upwiz-thumbnail-more" : "Enlarge", |
79 | 79 | "mwe-upwiz-overwrite" : "Replace the file", |
80 | 80 | |
81 | 81 | "mwe-copyright-macro": "As above", |
— | — | @@ -1234,7 +1234,7 @@ |
1235 | 1235 | |
1236 | 1236 | var $fileAlreadyExists = $j('<div />') |
1237 | 1237 | .append( |
1238 | | - gM( 'mwe-fileexists', |
| 1238 | + gM( 'mwe-upwiz-fileexists', |
1239 | 1239 | $j('<a />') |
1240 | 1240 | .attr( { target: '_new', href: href } ) |
1241 | 1241 | .text( title ) |
— | — | @@ -1268,7 +1268,7 @@ |
1269 | 1269 | $j('<a />' ) |
1270 | 1270 | .addClass( 'internal' ) |
1271 | 1271 | .attr( { |
1272 | | - 'title' : gM('mwe-thumbnail-more'), |
| 1272 | + 'title' : gM('mwe-upwiz-thumbnail-more'), |
1273 | 1273 | 'href' : href |
1274 | 1274 | } ), |
1275 | 1275 | |
Index: trunk/extensions/UploadWizard/js/UploadWizard.i18n.php |
— | — | @@ -1,17 +1,16 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Internationalisation for UploadWizard |
5 | 5 | * |
6 | 6 | * @file |
7 | 7 | * @ingroup Extensions |
8 | 8 | */ |
9 | 9 | |
10 | | - |
11 | 10 | $messages = array(); |
12 | 11 | |
13 | 12 | $messages['en'] = array( |
14 | | - 'mwe-code-unknown' => 'Unknown language', |
15 | | - 'mwe-loading-upwiz' => 'Loading upload wizard', |
| 13 | + 'mwe-upwiz-code-unknown' => 'Unknown language', |
| 14 | + 'mwe-upwiz-loading-upwiz' => 'Loading upload wizard', |
16 | 15 | 'mwe-upwiz-tab-file' => '1. Upload your files', |
17 | 16 | 'mwe-upwiz-tab-details' => '2. Add licenses and descriptions', |
18 | 17 | 'mwe-upwiz-tab-thanks' => '3. Use your files', |
— | — | @@ -66,9 +65,9 @@ |
67 | 66 | 'mwe-upwiz-source' => 'Source', |
68 | 67 | 'mwe-upwiz-macro-edit-intro' => 'Please add some descriptions and other information to your uploads.', |
69 | 68 | 'mwe-upwiz-macro-edit' => 'Update descriptions', |
70 | | - 'mwe-upwiz-thanks-intro' => 'Thanks for uploading your works! You can now use your files on a Wikipedia article or link to them from elsewhere on the web.', |
| 69 | + 'mwe-upwiz-thanks-intro' => 'Thanks for uploading your works! You can now use your files on page or link to them from elsewhere on the web.', |
71 | 70 | 'mwe-upwiz-thanks-link' => 'This file is now available at <b><tt>$1</tt></b>.', |
72 | | - 'mwe-upwiz-thanks-wikitext' => 'To use it in a Wikipedia article, copy this text into an article: ', |
| 71 | + 'mwe-upwiz-thanks-wikitext' => 'To use the file, copy this text into a page:', |
73 | 72 | 'mwe-upwiz-thanks-url' => 'To link to it in HTML, copy this HTML code: ', |
74 | 73 | 'mwe-upwiz-upload-error-bad-filename-extension' => 'This wiki does not accept filenames with the extension "$1".', |
75 | 74 | 'mwe-upwiz-upload-error-duplicate' => 'This file was previously uploaded to this wiki.', |
— | — | @@ -76,107 +75,108 @@ |
77 | 76 | 'mwe-upwiz-ok' => 'OK', |
78 | 77 | 'mwe-upwiz-cancel' => 'Cancel', |
79 | 78 | 'mwe-upwiz-change' => '(change)', |
80 | | - 'mwe-fileexists' => 'A file with this name exists already. Please check <b><tt>$1</tt></b> if you are not sure if you want to replace it.', |
81 | | - 'mwe-thumbnail-more' => 'Enlarge', |
| 79 | + 'mwe-upwiz-fileexists' => 'A file with this name exists already. Please check <b><tt>$1</tt></b> if you are not sure if you want to replace it.', |
| 80 | + 'mwe-upwiz-thumbnail-more' => 'Enlarge', |
82 | 81 | 'mwe-upwiz-overwrite' => 'Replace the file', |
83 | 82 | ); |
84 | 83 | |
85 | 84 | $messages['be-tarask'] = array( |
86 | | - 'mwe-fileexists' => 'Файл з такой назвай ужо існуе. Калі ласка, праверце <b><tt>$1</tt></b>, калі Вы ня ўпэўненыя, што жадаеце яго замяніць.', |
| 85 | + 'mwe-upwiz-fileexists' => 'Файл з такой назвай ужо існуе. Калі ласка, праверце <b><tt>$1</tt></b>, калі Вы ня ўпэўненыя, што жадаеце яго замяніць.', |
87 | 86 | ); |
88 | 87 | |
89 | 88 | $messages['cs'] = array( |
90 | | - 'mwe-fileexists' => 'Soubor s tímto jménem již existuje, prosím podívejte se na <b><tt>$1</tt></b>, pokud nevíte jistě, zda chcete tento soubor nahradit.', |
| 89 | + 'mwe-upwiz-fileexists' => 'Soubor s tímto jménem již existuje, prosím podívejte se na <b><tt>$1</tt></b>, pokud nevíte jistě, zda chcete tento soubor nahradit.', |
91 | 90 | ); |
92 | 91 | |
93 | 92 | $messages['de'] = array( |
94 | | - 'mwe-fileexists' => 'Eine Datei mit diesem Namen existiert bereits. Bitte prüfe <b><tt>$1</tt></b>, wenn du dir bei der Änderung nicht sicher bist.', |
| 93 | + 'mwe-upwiz-fileexists' => 'Eine Datei mit diesem Namen existiert bereits. Bitte prüfe <b><tt>$1</tt></b>, wenn du dir bei der Änderung nicht sicher bist.', |
95 | 94 | ); |
96 | 95 | |
97 | 96 | $messages['diq'] = array( |
98 | | - 'mwe-fileexists' => 'no name de ca ra yew dosya esta. eke şıma emin niê bıvurni, kerem kerê <b><tt>$1</tt></b> kontrol bıkerê.', |
| 97 | + 'mwe-upwiz-fileexists' => 'no name de ca ra yew dosya esta. eke şıma emin niê bıvurni, kerem kerê <b><tt>$1</tt></b> kontrol bıkerê.', |
99 | 98 | ); |
100 | 99 | |
101 | 100 | $messages['dsb'] = array( |
102 | | - 'mwe-fileexists' => 'Dataja z toś tym mjenim južo eksistěrujo. Pšosym skontrolěruj <b><tt>$1</tt></b>, jolic njejsy wěsty, lěc coš ju změniś.', |
| 101 | + 'mwe-upwiz-fileexists' => 'Dataja z toś tym mjenim južo eksistěrujo. Pšosym skontrolěruj <b><tt>$1</tt></b>, jolic njejsy wěsty, lěc coš ju změniś.', |
103 | 102 | ); |
104 | 103 | |
105 | 104 | $messages['es'] = array( |
106 | | - 'mwe-fileexists' => 'Un archivo con este nombre ya existe. Por favor verifica <b><tt>$1</tt></b> si no est.ás seguro si deseas cambiarlo.', |
| 105 | + 'mwe-upwiz-fileexists' => 'Un archivo con este nombre ya existe. Por favor verifica <b><tt>$1</tt></b> si no est.ás seguro si deseas cambiarlo.', |
107 | 106 | ); |
108 | 107 | |
109 | 108 | $messages['fr'] = array( |
110 | | - 'mwe-fileexists' => 'Un fichier existe déjà sous ce nom. Veuillez vérifier <b><tt>$1</tt></b> si vous n\'êtes pas sûr de vouloir le changer.', |
| 109 | + 'mwe-upwiz-fileexists' => 'Un fichier existe déjà sous ce nom. Veuillez vérifier <b><tt>$1</tt></b> si vous n\'êtes pas sûr de vouloir le changer.', |
111 | 110 | ); |
112 | 111 | |
113 | 112 | $messages['gl'] = array( |
114 | | - 'mwe-fileexists' => 'Xa existe un ficheiro con ese nome. Por favor, verifique <b><tt>$1</tt></b> se non está seguro de que quere cambialo.', |
| 113 | + 'mwe-upwiz-fileexists' => 'Xa existe un ficheiro con ese nome. Por favor, verifique <b><tt>$1</tt></b> se non está seguro de que quere cambialo.', |
115 | 114 | ); |
116 | 115 | |
117 | 116 | $messages['gsw'] = array( |
118 | | - 'mwe-fileexists' => 'S het scho ne Datei mit däm Name. Bitte prief <b><tt>$1</tt></b>, wänn du nit sicher bisch, eb Du dr Name witt ändere.', |
| 117 | + 'mwe-upwiz-fileexists' => 'S het scho ne Datei mit däm Name. Bitte prief <b><tt>$1</tt></b>, wänn du nit sicher bisch, eb Du dr Name witt ändere.', |
119 | 118 | ); |
120 | 119 | |
121 | 120 | $messages['hsb'] = array( |
122 | | - 'mwe-fileexists' => 'Dataja z tutym mjenom hižo eksistuje. Prošu skontroluj <b><tt>$1</tt></b>, jeli njesy sej wěsty, hač chceš ju změnić.', |
| 121 | + 'mwe-upwiz-fileexists' => 'Dataja z tutym mjenom hižo eksistuje. Prošu skontroluj <b><tt>$1</tt></b>, jeli njesy sej wěsty, hač chceš ju změnić.', |
123 | 122 | ); |
124 | 123 | |
125 | 124 | $messages['hu'] = array( |
126 | | - 'mwe-fileexists' => 'Már létezik ilyen nevű fájl. Ellenőrizd a(z) <b><tt>$1</tt></b> fájlt, ha nem vagy biztos benne, hogy le szeretnéd cserélni.', |
| 125 | + 'mwe-upwiz-fileexists' => 'Már létezik ilyen nevű fájl. Ellenőrizd a(z) <b><tt>$1</tt></b> fájlt, ha nem vagy biztos benne, hogy le szeretnéd cserélni.', |
127 | 126 | ); |
128 | 127 | |
129 | 128 | $messages['ia'] = array( |
130 | | - 'mwe-fileexists' => 'Un file con iste nomine ja existe. Per favor verifica <b><tt>$1</tt></b> si tu non es secur de voler cambiar lo.', |
| 129 | + 'mwe-upwiz-fileexists' => 'Un file con iste nomine ja existe. Per favor verifica <b><tt>$1</tt></b> si tu non es secur de voler cambiar lo.', |
131 | 130 | ); |
132 | 131 | |
133 | 132 | $messages['id'] = array( |
134 | | - 'mwe-fileexists' => 'Suatu berkas dengan nama tersebut telah ada. Tolong cek <b><tt>$1</tt></b> jika Anda tidak yakin untuk mengubahnya.', |
| 133 | + 'mwe-upwiz-fileexists' => 'Suatu berkas dengan nama tersebut telah ada. Tolong cek <b><tt>$1</tt></b> jika Anda tidak yakin untuk mengubahnya.', |
135 | 134 | ); |
136 | 135 | |
137 | 136 | $messages['ja'] = array( |
138 | | - 'mwe-fileexists' => '同名のファイルが既に存在しています。上書きしてよいかわからない場合は <b><tt>$1</tt></b> を確認してください。', |
| 137 | + 'mwe-upwiz-fileexists' => '同名のファイルが既に存在しています。上書きしてよいかわからない場合は <b><tt>$1</tt></b> を確認してください。', |
139 | 138 | ); |
140 | 139 | |
141 | 140 | $messages['ksh'] = array( |
142 | | - 'mwe-fileexists' => 'En Dattei met dämm Name jidd_et ald. Beß esu joot un donn <b><tt>$1</tt></b> prööfe, wann De Der nit sescher beß, of De jät ändere wells.', |
| 141 | + 'mwe-upwiz-fileexists' => 'En Dattei met dämm Name jidd_et ald. Beß esu joot un donn <b><tt>$1</tt></b> prööfe, wann De Der nit sescher beß, of De jät ändere wells.', |
143 | 142 | ); |
144 | 143 | |
145 | 144 | $messages['lb'] = array( |
146 | | - 'mwe-fileexists' => 'E Fichier mat dësem Numm gëtt et schonn. Kuckt w.e.g. op <b><tt>$1</tt></b> no wann Dir net sécher sidd ob Dir en ännere wëllt.', |
| 145 | + 'mwe-upwiz-fileexists' => 'E Fichier mat dësem Numm gëtt et schonn. Kuckt w.e.g. op <b><tt>$1</tt></b> no wann Dir net sécher sidd ob Dir en ännere wëllt.', |
147 | 146 | ); |
148 | 147 | |
149 | 148 | $messages['ml'] = array( |
150 | | - 'mwe-fileexists' => 'ഇതേ പേരിൽ ഒരു പ്രമാണം നിലവിലുണ്ട്. അതിൽ മാറ്റം വരുത്തണോ എന്നു താങ്കൾക്ക് ഉറപ്പില്ലങ്കിൽ ദയവായി <b><tt>$1</tt></b> കാണുക.', |
| 149 | + 'mwe-upwiz-fileexists' => 'ഇതേ പേരിൽ ഒരു പ്രമാണം നിലവിലുണ്ട്. അതിൽ മാറ്റം വരുത്തണോ എന്നു താങ്കൾക്ക് ഉറപ്പില്ലങ്കിൽ ദയവായി <b><tt>$1</tt></b> കാണുക.', |
151 | 150 | ); |
152 | 151 | |
153 | 152 | $messages['nl'] = array( |
154 | | - 'mwe-fileexists' => 'Er bestaat al een bestand met deze naam. Controleer <b><tt>$1</tt></b> als u niet zeker weet of u het huidige bestand wilt overschrijven.', |
| 153 | + 'mwe-upwiz-fileexists' => 'Er bestaat al een bestand met deze naam. Controleer <b><tt>$1</tt></b> als u niet zeker weet of u het huidige bestand wilt overschrijven.', |
155 | 154 | ); |
156 | 155 | |
157 | 156 | $messages['oc'] = array( |
158 | | - 'mwe-fileexists' => 'Un fichièr amb aqueste nom existís ja. Mercé de verificar <b><tt>$1</tt></b> se sètz pas segur que lo volètz cambiar.', |
| 157 | + 'mwe-upwiz-fileexists' => 'Un fichièr amb aqueste nom existís ja. Mercé de verificar <b><tt>$1</tt></b> se sètz pas segur que lo volètz cambiar.', |
159 | 158 | ); |
160 | 159 | |
161 | 160 | $messages['pl'] = array( |
162 | | - 'mwe-fileexists' => 'Plik o tej nazwie już istnieje. Sprawdź <b><tt>$1</tt></b> jeśli nie jesteś pewien czy chcesz go zastąpić.', |
| 161 | + 'mwe-upwiz-fileexists' => 'Plik o tej nazwie już istnieje. Sprawdź <b><tt>$1</tt></b> jeśli nie jesteś pewien czy chcesz go zastąpić.', |
163 | 162 | ); |
164 | 163 | |
165 | 164 | $messages['pt'] = array( |
166 | | - 'mwe-fileexists' => 'Já existe um ficheiro com este nome. Por favor, verifique <b><tt>$1</tt></b> se não tem a certeza de que deseja alterá-lo.', |
| 165 | + 'mwe-upwiz-fileexists' => 'Já existe um ficheiro com este nome. Por favor, verifique <b><tt>$1</tt></b> se não tem a certeza de que deseja alterá-lo.', |
167 | 166 | ); |
168 | 167 | |
169 | 168 | $messages['ru'] = array( |
170 | | - 'mwe-fileexists' => 'Файл с этим именем уже существует. Пожалуйста, проверьте <b><tt>$1</tt></b>, если вы не уверены, что хотите заменить его.', |
| 169 | + 'mwe-upwiz-fileexists' => 'Файл с этим именем уже существует. Пожалуйста, проверьте <b><tt>$1</tt></b>, если вы не уверены, что хотите заменить его.', |
171 | 170 | ); |
172 | 171 | |
173 | 172 | $messages['sk'] = array( |
174 | | - 'mwe-fileexists' => 'Súbor s týmto názvom už existuje. Prosím, skontrolujte <b><tt>$1</tt></b> ak si nie ste istý, či ho chcete zmeniť.', |
| 173 | + 'mwe-upwiz-fileexists' => 'Súbor s týmto názvom už existuje. Prosím, skontrolujte <b><tt>$1</tt></b> ak si nie ste istý, či ho chcete zmeniť.', |
175 | 174 | ); |
176 | 175 | |
177 | 176 | $messages['tr'] = array( |
178 | | - 'mwe-fileexists' => 'Bu isimde bir dosya zaten mevcut. Değiştirmek istediğinize emin değilseniz lütfen <b><tt>$1</tt></b> kontrol edin.', |
| 177 | + 'mwe-upwiz-fileexists' => 'Bu isimde bir dosya zaten mevcut. Değiştirmek istediğinize emin değilseniz lütfen <b><tt>$1</tt></b> kontrol edin.', |
179 | 178 | ); |
180 | 179 | |
181 | 180 | $messages['vi'] = array( |
182 | | - 'mwe-fileexists' => 'Một tập tin với tên này đã tồn tại, xin hãy kiểm tra lại <b><tt>$1</tt></b> nếu bạn không chắc bạn có muốn thay đổi nó hay không.', |
| 181 | + 'mwe-upwiz-fileexists' => 'Một tập tin với tên này đã tồn tại, xin hãy kiểm tra lại <b><tt>$1</tt></b> nếu bạn không chắc bạn có muốn thay đổi nó hay không.', |
183 | 182 | ); |
| 183 | + |