Index: trunk/wikimania/wmreg/skin/form.php |
— | — | @@ -2,21 +2,21 @@ |
3 | 3 | function disable(idarray){ |
4 | 4 | for (x in idarray) |
5 | 5 | { |
6 | | - document.getElementById(idarray[x]).disabled = true; |
| 6 | + document.getElementById(idarray[x]).disabled = true; |
7 | 7 | } |
8 | 8 | } |
9 | 9 | |
10 | 10 | function enable(idarray){ |
11 | 11 | for (x in idarray) |
12 | 12 | { |
13 | | - document.getElementById(idarray[x]).disabled = false; |
| 13 | + document.getElementById(idarray[x]).disabled = false; |
14 | 14 | } |
15 | 15 | } |
16 | 16 | |
17 | 17 | function flip(idarray) { |
18 | 18 | for (x in idarray) |
19 | 19 | { |
20 | | - document.getElementById(idarray[x]).disabled = !document.getElementById(idarray[x]).disabled; |
| 20 | + document.getElementById(idarray[x]).disabled = !document.getElementById(idarray[x]).disabled; |
21 | 21 | } |
22 | 22 | } |
23 | 23 | |
Index: trunk/wikimania/wmreg/skin/admin_interface.php |
— | — | @@ -238,7 +238,7 @@ |
239 | 239 | <th>7/8</th> |
240 | 240 | <th>Tour</th> |
241 | 241 | <th>Size</th> |
242 | | - <th>Food</th>'; |
| 242 | + <th>Food</th>'; |
243 | 243 | break; |
244 | 244 | case 'accommodation': |
245 | 245 | echo '<th>1/8</th> |
— | — | @@ -249,7 +249,7 @@ |
250 | 250 | <th>6/8</th> |
251 | 251 | <th>7/8</th> |
252 | 252 | <th>8/8</th> |
253 | | - <th>Hotel</th> |
| 253 | + <th>Hotel</th> |
254 | 254 | <th>Type</th> |
255 | 255 | <th>Partner</th> |
256 | 256 | <th>Room #</th> |
Index: trunk/wikimania/wmreg/skin/admin_interface.old.php |
— | — | @@ -117,8 +117,8 @@ |
118 | 118 | </script> |
119 | 119 | <div id="mask"> </div> |
120 | 120 | <div id="content_part"> |
121 | | - <h1>管理介面</h1> |
122 | | - <p id="special_pages">登入為<strong> <?php echo $_SESSION['user_id']?></strong> | <a href="<?php echo $myself_url . 'index.php?action=logout'?>" title="登出並離開管理介面">登出</a></p> |
| 121 | + <h1>管理介面</h1> |
| 122 | + <p id="special_pages">登入為<strong> <?php echo $_SESSION['user_id']?></strong> | <a href="<?php echo $myself_url . 'index.php?action=logout'?>" title="登出並離開管理介面">登出</a></p> |
123 | 123 | <?php if ( !empty( $error_message ) ) |
124 | 124 | { |
125 | 125 | echo '<div id="correction">' . "\n" . $error_message . "\n" . '</div>' . "\n"; |
— | — | @@ -439,9 +439,9 @@ |
440 | 440 | <p> |
441 | 441 | 參加日期: |
442 | 442 | <?php if ( $MY_REQUEST['j'] ) |
443 | | - { echo ' <input type="checkbox" value="1" name="j1" id="j1" checked="checked" />'; } |
| 443 | + { echo ' <input type="checkbox" value="1" name="j1" id="j1" checked="checked" />'; } |
444 | 444 | else |
445 | | - { echo ' <input type="checkbox" value="1" name="j1" id="j1" />'; } |
| 445 | + { echo ' <input type="checkbox" value="1" name="j1" id="j1" />'; } |
446 | 446 | echo '<label for="j1">' . $lang_register_form['join1'] . '</label>' . "\n"; |
447 | 447 | |
448 | 448 | // echo $lang_register_form['join2']; ?> |
— | — | @@ -452,9 +452,9 @@ |
453 | 453 | for ( $i = 3; $i <= 5; $i++ ) |
454 | 454 | { |
455 | 455 | if ( $MY_REQUEST['j' . $i] ) |
456 | | - { echo ' <input type="checkbox" value="1" name="j' . $i . '" id="j' . $i . '" checked="checked" />'; } |
| 456 | + { echo ' <input type="checkbox" value="1" name="j' . $i . '" id="j' . $i . '" checked="checked" />'; } |
457 | 457 | else |
458 | | - { echo ' <input type="checkbox" value="1" name="j' . $i . '" id="j' . $i . '" />'; } |
| 458 | + { echo ' <input type="checkbox" value="1" name="j' . $i . '" id="j' . $i . '" />'; } |
459 | 459 | echo '<label for="j' . $i . '">' . $lang_register_form['join' . $i] . '</label>'; |
460 | 460 | |
461 | 461 | echo "\n"; |
— | — | @@ -469,9 +469,9 @@ |
470 | 470 | for ( $i = 1; $i <= 6; $i++ ) |
471 | 471 | { |
472 | 472 | if ( $MY_REQUEST['n' . $i] ) |
473 | | - { echo ' <input type="checkbox" value="1" name="n' . $i . '" id="n' . $i . '" checked="checked" />'; } |
| 473 | + { echo ' <input type="checkbox" value="1" name="n' . $i . '" id="n' . $i . '" checked="checked" />'; } |
474 | 474 | else |
475 | | - { echo ' <input type="checkbox" value="1" name="n' . $i . '" id="n' . $i . '" />'; } |
| 475 | + { echo ' <input type="checkbox" value="1" name="n' . $i . '" id="n' . $i . '" />'; } |
476 | 476 | echo '<label for="n' . $i . '">' . $lang_register_form['night' . $i] . '</label>'; |
477 | 477 | |
478 | 478 | echo "\n"; |
Index: trunk/wikimania/wmreg/includes/language_es.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | 'months' => array( NULL, 'Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre' ), |
29 | 29 | 'day' => '', |
30 | 30 | 'title2' => |
31 | | -' <p><strong>Habilidades lingüísticas</strong></p>', |
| 31 | +' <p><strong>Habilidades lingüísticas</strong></p>', |
32 | 32 | 'langn' => 'Idioma nativo', |
33 | 33 | 'lang' => 'Idiomas adicionales', |
34 | 34 | 'select_lang' => 'Selecciona el idioma', |
— | — | @@ -209,245 +209,245 @@ |
210 | 210 | ); |
211 | 211 | |
212 | 212 | $lang_countries = array( |
213 | | - 'af' => 'Afganistán', |
214 | | - 'ax' => 'Islas Aland', |
215 | | - 'al' => 'Albania', |
216 | | - 'dz' => 'Algeria', |
217 | | - 'as' => 'Samoa Estadounidense', |
218 | | - 'ad' => 'Andorra', |
219 | | - 'ao' => 'Angola', |
220 | | - 'ai' => 'Anguilla', |
221 | | - 'aq' => 'Antártida', |
222 | | - 'ag' => 'Antigua y Barbuda', |
223 | | - 'ar' => 'Argentina', |
224 | | - 'am' => 'Armenia', |
225 | | - 'aw' => 'Aruba', |
226 | | - 'au' => 'Australia', |
227 | | - 'at' => 'Austria', |
228 | | - 'az' => 'Azerbayán', |
229 | | - 'bs' => 'Bahamas', |
230 | | - 'bh' => 'Bahrein', |
231 | | - 'bd' => 'Bangladesh', |
232 | | - 'bb' => 'Barbados', |
233 | | - 'by' => 'Belarus', |
234 | | - 'be' => 'Bélgica', |
235 | | - 'bz' => 'Belice', |
236 | | - 'bj' => 'Benin', |
237 | | - 'bm' => 'Bermuda', |
238 | | - 'bt' => 'Bhutan', |
239 | | - 'bo' => 'Bolivia', |
240 | | - 'ba' => 'Bosnia y Herzegovina', |
241 | | - 'bw' => 'Botswana', |
242 | | - 'bv' => 'Bouvet Island', |
243 | | - 'br' => 'Brasil', |
244 | | - 'io' => 'British Indian Ocean Territory', |
245 | | - 'bn' => 'Brunei Darussalam', |
246 | | - 'bg' => 'Bulgaria', |
247 | | - 'bf' => 'Burkina Faso', |
248 | | - 'mm' => 'Burma (Myanmar)', |
249 | | - 'bi' => 'Burundi', |
250 | | - 'kh' => 'Cambodia', |
251 | | - 'cm' => 'Camerún', |
252 | | - 'ca' => 'Canadá', |
253 | | - 'cv' => 'Cabo Verde', |
254 | | - 'ky' => 'Islans Caimán', |
255 | | - 'cf' => 'República Central Africana', |
256 | | - 'td' => 'Chad', |
257 | | - 'cl' => 'Chile', |
258 | | - 'hk' => 'Hong Kong SAR', |
259 | | - 'cn' => 'República Popular de China', |
260 | | - 'tw' => 'República Popular de China (Taiwan)', |
261 | | - 'cx' => 'Isla de Navidad', |
262 | | - 'cc' => 'Islas Coco', |
263 | | - 'co' => 'Colombia', |
264 | | - 'km' => 'Comoros', |
265 | | - 'cg' => 'Congo', |
266 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
267 | | - 'ck' => 'Cook Islands', |
268 | | - 'cr' => 'Costa Rica', |
269 | | - 'ci' => 'Cote D\'ivoire', |
270 | | - 'hr' => 'Croacia', |
271 | | - 'cu' => 'Cuba', |
272 | | - 'cy' => 'Cyprus', |
273 | | - 'cz' => 'República Checa', |
274 | | - 'dk' => 'Dinamarca', |
275 | | - 'dj' => 'Djibouti', |
276 | | - 'dm' => 'Dominica', |
277 | | - 'do' => 'República Dominicana', |
278 | | - 'ec' => 'Ecuador', |
279 | | - 'eg' => 'Egipto', |
280 | | - 'sv' => 'El Salvador', |
281 | | - 'gq' => 'Equatorial Guinea', |
282 | | - 'er' => 'Eritrea', |
283 | | - 'ee' => 'Estonia', |
284 | | - 'et' => 'Ethiopia', |
285 | | - 'fk' => 'Falkland Islands (malvinas)', |
286 | | - 'fo' => 'Faroe Islands', |
287 | | - 'fj' => 'Fiji', |
288 | | - 'fi' => 'Finlandia', |
289 | | - 'fr' => 'Francia', |
290 | | - 'gf' => 'French Guiana', |
291 | | - 'pf' => 'French Polynesia', |
292 | | - 'tf' => 'French Southern Territories', |
293 | | - 'ga' => 'Gabon', |
294 | | - 'gm' => 'Gambia', |
295 | | - 'ge' => 'Georgia', |
296 | | - 'de' => 'Alemania', |
297 | | - 'gh' => 'Ghana', |
298 | | - 'gi' => 'Gibraltar', |
299 | | - 'gr' => 'Grecia', |
300 | | - 'gl' => 'Groenlandia', |
301 | | - 'gd' => 'Grenada', |
302 | | - 'gp' => 'Guadeloupe', |
303 | | - 'gu' => 'Guam', |
304 | | - 'gt' => 'Guatemala', |
305 | | - 'gn' => 'Guinea', |
306 | | - 'gw' => 'Guinea-Bissau', |
307 | | - 'gy' => 'Guyana', |
308 | | - 'ht' => 'Haití', |
309 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
310 | | - 'va' => 'Holy See (Vatican City)', |
311 | | - 'hn' => 'Honduras', |
312 | | - 'hu' => 'Hungary', |
313 | | - 'is' => 'Iceland', |
314 | | - 'in' => 'India', |
315 | | - 'id' => 'Indonesia', |
316 | | - 'ir' => 'Iran, Islamic Republic of', |
317 | | - 'iq' => 'Iraq', |
318 | | - 'ie' => 'Ireland', |
319 | | - 'il' => 'Israel', |
320 | | - 'it' => 'Italia', |
321 | | - 'jm' => 'Jamaica', |
322 | | - 'jp' => 'Japón', |
323 | | - 'jo' => 'Jordán', |
324 | | - 'kz' => 'Kazakhstan', |
325 | | - 'ke' => 'Kenya', |
326 | | - 'ki' => 'Kiribati', |
327 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
328 | | - 'kr' => 'Republic of Korea', |
329 | | - 'kw' => 'Kuwait', |
330 | | - 'kg' => 'Kyrgyzstan', |
331 | | - 'la' => 'Lao People\'s Democratic Republic', |
332 | | - 'lv' => 'Latvia', |
333 | | - 'lb' => 'Lebanon', |
334 | | - 'ls' => 'Lesotho', |
335 | | - 'lr' => 'Liberia', |
336 | | - 'ly' => 'Libyan Arab Jamahiriya', |
337 | | - 'li' => 'Liechtenstein', |
338 | | - 'lt' => 'Lithuania', |
339 | | - 'lu' => 'Luxembourg', |
340 | | - 'mo' => 'Macao', |
341 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
342 | | - 'mg' => 'Madagascar', |
343 | | - 'mw' => 'Malawi', |
344 | | - 'my' => 'Malaysia', |
345 | | - 'mv' => 'Maldives', |
346 | | - 'ml' => 'Mali', |
347 | | - 'mt' => 'Malta', |
348 | | - 'mh' => 'Marshall Islands', |
349 | | - 'mq' => 'Martinique', |
350 | | - 'mr' => 'Mauritania', |
351 | | - 'mu' => 'Mauritius', |
352 | | - 'yt' => 'Mayotte', |
353 | | - 'mx' => 'México', |
354 | | - 'fm' => 'Micronesia, Federated States of', |
355 | | - 'md' => 'Moldova, Republic of', |
356 | | - 'mc' => 'Monaco SAR', |
357 | | - 'mn' => 'Mongolia', |
358 | | - 'me' => 'Montenegro', |
359 | | - 'ms' => 'Montserrat', |
360 | | - 'ma' => 'Morocco', |
361 | | - 'mz' => 'Mozambique', |
362 | | - 'na' => 'Namibia', |
363 | | - 'nr' => 'Nauru', |
364 | | - 'np' => 'Nepal', |
365 | | - 'nl' => 'Netherlands', |
366 | | - 'an' => 'Netherlands Antilles', |
367 | | - 'nc' => 'New Caledonia', |
368 | | - 'nz' => 'New Zealand', |
369 | | - 'ni' => 'Nicaragua', |
370 | | - 'ne' => 'Niger', |
371 | | - 'ng' => 'Nigeria', |
372 | | - 'nu' => 'Niue', |
373 | | - 'nf' => 'Norfolk Island', |
374 | | - 'mp' => 'Northern Mariana Islands', |
375 | | - 'no' => 'Norway', |
376 | | - 'om' => 'Oman', |
377 | | - 'pk' => 'Pakistan', |
378 | | - 'pw' => 'Palau', |
379 | | - 'ps' => 'Palestinian Territory', |
380 | | - 'pa' => 'Panamá', |
381 | | - 'pg' => 'Papua New Guinea', |
382 | | - 'py' => 'Paraguay', |
383 | | - 'pe' => 'Perú', |
384 | | - 'ph' => 'Philippines', |
385 | | - 'pn' => 'Pitcairn', |
386 | | - 'pl' => 'Polonia', |
387 | | - 'pt' => 'Portugal', |
388 | | - 'pr' => 'Puerto Rico', |
389 | | - 'qa' => 'Qatar', |
390 | | - 're' => 'Reunion', |
391 | | - 'ro' => 'Romania', |
392 | | - 'ru' => 'Russian Federation', |
393 | | - 'rw' => 'Rwanda', |
394 | | - 'sh' => 'Saint Helena', |
395 | | - 'kn' => 'Saint Kitts and Nevis', |
396 | | - 'lc' => 'Saint Lucia', |
397 | | - 'pm' => 'Saint Pierre and Miquelon', |
398 | | - 'vc' => 'Saint Vincent and the Grenadines', |
399 | | - 'ws' => 'Samoa', |
400 | | - 'sm' => 'San Marino', |
401 | | - 'st' => 'Sao Tome and Principe', |
402 | | - 'sa' => 'Saudi Arabia', |
403 | | - 'sn' => 'Senegal', |
404 | | - 'rs' => 'Serbia', |
405 | | - 'sc' => 'Seychelles', |
406 | | - 'sl' => 'Sierra Leone', |
407 | | - 'sg' => 'Singapore', |
408 | | - 'sk' => 'Slovakia', |
409 | | - 'si' => 'Slovenia', |
410 | | - 'sb' => 'Solomon Islands', |
411 | | - 'so' => 'Somalia', |
412 | | - 'za' => 'South Africa', |
413 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
414 | | - 'es' => 'Spain', |
415 | | - 'lk' => 'Sri Lanka', |
416 | | - 'sd' => 'Sudan', |
417 | | - 'sr' => 'Suriname', |
418 | | - 'sj' => 'Svalbard and Jan Mayen', |
419 | | - 'sz' => 'Swaziland', |
420 | | - 'se' => 'Sweden', |
421 | | - 'ch' => 'Switzerland', |
422 | | - 'sy' => 'Syrian Arab Republic', |
423 | | - 'tj' => 'Tajikistan', |
424 | | - 'tz' => 'Tanzania, United Republic of', |
425 | | - 'th' => 'Thailand', |
426 | | - 'tl' => 'Timor-leste', |
427 | | - 'tg' => 'Togo', |
428 | | - 'tk' => 'Tokelau', |
429 | | - 'to' => 'Tonga', |
430 | | - 'tt' => 'Trinidad and Tobago', |
431 | | - 'tn' => 'Tunisia', |
432 | | - 'tr' => 'Turkey', |
433 | | - 'tm' => 'Turkmenistan', |
434 | | - 'tc' => 'Turks and Caicos Islands', |
435 | | - 'tv' => 'Tuvalú', |
436 | | - 'ug' => 'Uganda', |
437 | | - 'ua' => 'Ucrania', |
438 | | - 'ae' => 'Emiratos Árabes Unidos', |
439 | | - 'gb' => 'Reino Unido', |
440 | | - 'us' => 'Estados Unidos', |
441 | | - 'um' => 'United States Minor Outlying Islands', |
442 | | - 'uy' => 'Uruguay', |
443 | | - 'uz' => 'Uzbekistán', |
444 | | - 'vu' => 'Vanuatú', |
445 | | - 've' => 'Venezuela', |
446 | | - 'vn' => 'VietNam', |
447 | | - 'vg' => 'Virgin Islands, British', |
448 | | - 'vi' => 'Virgin Islands, U.S.', |
449 | | - 'wf' => 'Wallis and Futuna', |
450 | | - 'eh' => 'Western Sahara', |
451 | | - 'ye' => 'Yemen', |
452 | | - 'zm' => 'Zambia', |
453 | | - 'zw' => 'Zimbabwe' |
| 213 | + 'af' => 'Afganistán', |
| 214 | + 'ax' => 'Islas Aland', |
| 215 | + 'al' => 'Albania', |
| 216 | + 'dz' => 'Algeria', |
| 217 | + 'as' => 'Samoa Estadounidense', |
| 218 | + 'ad' => 'Andorra', |
| 219 | + 'ao' => 'Angola', |
| 220 | + 'ai' => 'Anguilla', |
| 221 | + 'aq' => 'Antártida', |
| 222 | + 'ag' => 'Antigua y Barbuda', |
| 223 | + 'ar' => 'Argentina', |
| 224 | + 'am' => 'Armenia', |
| 225 | + 'aw' => 'Aruba', |
| 226 | + 'au' => 'Australia', |
| 227 | + 'at' => 'Austria', |
| 228 | + 'az' => 'Azerbayán', |
| 229 | + 'bs' => 'Bahamas', |
| 230 | + 'bh' => 'Bahrein', |
| 231 | + 'bd' => 'Bangladesh', |
| 232 | + 'bb' => 'Barbados', |
| 233 | + 'by' => 'Belarus', |
| 234 | + 'be' => 'Bélgica', |
| 235 | + 'bz' => 'Belice', |
| 236 | + 'bj' => 'Benin', |
| 237 | + 'bm' => 'Bermuda', |
| 238 | + 'bt' => 'Bhutan', |
| 239 | + 'bo' => 'Bolivia', |
| 240 | + 'ba' => 'Bosnia y Herzegovina', |
| 241 | + 'bw' => 'Botswana', |
| 242 | + 'bv' => 'Bouvet Island', |
| 243 | + 'br' => 'Brasil', |
| 244 | + 'io' => 'British Indian Ocean Territory', |
| 245 | + 'bn' => 'Brunei Darussalam', |
| 246 | + 'bg' => 'Bulgaria', |
| 247 | + 'bf' => 'Burkina Faso', |
| 248 | + 'mm' => 'Burma (Myanmar)', |
| 249 | + 'bi' => 'Burundi', |
| 250 | + 'kh' => 'Cambodia', |
| 251 | + 'cm' => 'Camerún', |
| 252 | + 'ca' => 'Canadá', |
| 253 | + 'cv' => 'Cabo Verde', |
| 254 | + 'ky' => 'Islans Caimán', |
| 255 | + 'cf' => 'República Central Africana', |
| 256 | + 'td' => 'Chad', |
| 257 | + 'cl' => 'Chile', |
| 258 | + 'hk' => 'Hong Kong SAR', |
| 259 | + 'cn' => 'República Popular de China', |
| 260 | + 'tw' => 'República Popular de China (Taiwan)', |
| 261 | + 'cx' => 'Isla de Navidad', |
| 262 | + 'cc' => 'Islas Coco', |
| 263 | + 'co' => 'Colombia', |
| 264 | + 'km' => 'Comoros', |
| 265 | + 'cg' => 'Congo', |
| 266 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 267 | + 'ck' => 'Cook Islands', |
| 268 | + 'cr' => 'Costa Rica', |
| 269 | + 'ci' => 'Cote D\'ivoire', |
| 270 | + 'hr' => 'Croacia', |
| 271 | + 'cu' => 'Cuba', |
| 272 | + 'cy' => 'Cyprus', |
| 273 | + 'cz' => 'República Checa', |
| 274 | + 'dk' => 'Dinamarca', |
| 275 | + 'dj' => 'Djibouti', |
| 276 | + 'dm' => 'Dominica', |
| 277 | + 'do' => 'República Dominicana', |
| 278 | + 'ec' => 'Ecuador', |
| 279 | + 'eg' => 'Egipto', |
| 280 | + 'sv' => 'El Salvador', |
| 281 | + 'gq' => 'Equatorial Guinea', |
| 282 | + 'er' => 'Eritrea', |
| 283 | + 'ee' => 'Estonia', |
| 284 | + 'et' => 'Ethiopia', |
| 285 | + 'fk' => 'Falkland Islands (malvinas)', |
| 286 | + 'fo' => 'Faroe Islands', |
| 287 | + 'fj' => 'Fiji', |
| 288 | + 'fi' => 'Finlandia', |
| 289 | + 'fr' => 'Francia', |
| 290 | + 'gf' => 'French Guiana', |
| 291 | + 'pf' => 'French Polynesia', |
| 292 | + 'tf' => 'French Southern Territories', |
| 293 | + 'ga' => 'Gabon', |
| 294 | + 'gm' => 'Gambia', |
| 295 | + 'ge' => 'Georgia', |
| 296 | + 'de' => 'Alemania', |
| 297 | + 'gh' => 'Ghana', |
| 298 | + 'gi' => 'Gibraltar', |
| 299 | + 'gr' => 'Grecia', |
| 300 | + 'gl' => 'Groenlandia', |
| 301 | + 'gd' => 'Grenada', |
| 302 | + 'gp' => 'Guadeloupe', |
| 303 | + 'gu' => 'Guam', |
| 304 | + 'gt' => 'Guatemala', |
| 305 | + 'gn' => 'Guinea', |
| 306 | + 'gw' => 'Guinea-Bissau', |
| 307 | + 'gy' => 'Guyana', |
| 308 | + 'ht' => 'Haití', |
| 309 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 310 | + 'va' => 'Holy See (Vatican City)', |
| 311 | + 'hn' => 'Honduras', |
| 312 | + 'hu' => 'Hungary', |
| 313 | + 'is' => 'Iceland', |
| 314 | + 'in' => 'India', |
| 315 | + 'id' => 'Indonesia', |
| 316 | + 'ir' => 'Iran, Islamic Republic of', |
| 317 | + 'iq' => 'Iraq', |
| 318 | + 'ie' => 'Ireland', |
| 319 | + 'il' => 'Israel', |
| 320 | + 'it' => 'Italia', |
| 321 | + 'jm' => 'Jamaica', |
| 322 | + 'jp' => 'Japón', |
| 323 | + 'jo' => 'Jordán', |
| 324 | + 'kz' => 'Kazakhstan', |
| 325 | + 'ke' => 'Kenya', |
| 326 | + 'ki' => 'Kiribati', |
| 327 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 328 | + 'kr' => 'Republic of Korea', |
| 329 | + 'kw' => 'Kuwait', |
| 330 | + 'kg' => 'Kyrgyzstan', |
| 331 | + 'la' => 'Lao People\'s Democratic Republic', |
| 332 | + 'lv' => 'Latvia', |
| 333 | + 'lb' => 'Lebanon', |
| 334 | + 'ls' => 'Lesotho', |
| 335 | + 'lr' => 'Liberia', |
| 336 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 337 | + 'li' => 'Liechtenstein', |
| 338 | + 'lt' => 'Lithuania', |
| 339 | + 'lu' => 'Luxembourg', |
| 340 | + 'mo' => 'Macao', |
| 341 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 342 | + 'mg' => 'Madagascar', |
| 343 | + 'mw' => 'Malawi', |
| 344 | + 'my' => 'Malaysia', |
| 345 | + 'mv' => 'Maldives', |
| 346 | + 'ml' => 'Mali', |
| 347 | + 'mt' => 'Malta', |
| 348 | + 'mh' => 'Marshall Islands', |
| 349 | + 'mq' => 'Martinique', |
| 350 | + 'mr' => 'Mauritania', |
| 351 | + 'mu' => 'Mauritius', |
| 352 | + 'yt' => 'Mayotte', |
| 353 | + 'mx' => 'México', |
| 354 | + 'fm' => 'Micronesia, Federated States of', |
| 355 | + 'md' => 'Moldova, Republic of', |
| 356 | + 'mc' => 'Monaco SAR', |
| 357 | + 'mn' => 'Mongolia', |
| 358 | + 'me' => 'Montenegro', |
| 359 | + 'ms' => 'Montserrat', |
| 360 | + 'ma' => 'Morocco', |
| 361 | + 'mz' => 'Mozambique', |
| 362 | + 'na' => 'Namibia', |
| 363 | + 'nr' => 'Nauru', |
| 364 | + 'np' => 'Nepal', |
| 365 | + 'nl' => 'Netherlands', |
| 366 | + 'an' => 'Netherlands Antilles', |
| 367 | + 'nc' => 'New Caledonia', |
| 368 | + 'nz' => 'New Zealand', |
| 369 | + 'ni' => 'Nicaragua', |
| 370 | + 'ne' => 'Niger', |
| 371 | + 'ng' => 'Nigeria', |
| 372 | + 'nu' => 'Niue', |
| 373 | + 'nf' => 'Norfolk Island', |
| 374 | + 'mp' => 'Northern Mariana Islands', |
| 375 | + 'no' => 'Norway', |
| 376 | + 'om' => 'Oman', |
| 377 | + 'pk' => 'Pakistan', |
| 378 | + 'pw' => 'Palau', |
| 379 | + 'ps' => 'Palestinian Territory', |
| 380 | + 'pa' => 'Panamá', |
| 381 | + 'pg' => 'Papua New Guinea', |
| 382 | + 'py' => 'Paraguay', |
| 383 | + 'pe' => 'Perú', |
| 384 | + 'ph' => 'Philippines', |
| 385 | + 'pn' => 'Pitcairn', |
| 386 | + 'pl' => 'Polonia', |
| 387 | + 'pt' => 'Portugal', |
| 388 | + 'pr' => 'Puerto Rico', |
| 389 | + 'qa' => 'Qatar', |
| 390 | + 're' => 'Reunion', |
| 391 | + 'ro' => 'Romania', |
| 392 | + 'ru' => 'Russian Federation', |
| 393 | + 'rw' => 'Rwanda', |
| 394 | + 'sh' => 'Saint Helena', |
| 395 | + 'kn' => 'Saint Kitts and Nevis', |
| 396 | + 'lc' => 'Saint Lucia', |
| 397 | + 'pm' => 'Saint Pierre and Miquelon', |
| 398 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 399 | + 'ws' => 'Samoa', |
| 400 | + 'sm' => 'San Marino', |
| 401 | + 'st' => 'Sao Tome and Principe', |
| 402 | + 'sa' => 'Saudi Arabia', |
| 403 | + 'sn' => 'Senegal', |
| 404 | + 'rs' => 'Serbia', |
| 405 | + 'sc' => 'Seychelles', |
| 406 | + 'sl' => 'Sierra Leone', |
| 407 | + 'sg' => 'Singapore', |
| 408 | + 'sk' => 'Slovakia', |
| 409 | + 'si' => 'Slovenia', |
| 410 | + 'sb' => 'Solomon Islands', |
| 411 | + 'so' => 'Somalia', |
| 412 | + 'za' => 'South Africa', |
| 413 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 414 | + 'es' => 'Spain', |
| 415 | + 'lk' => 'Sri Lanka', |
| 416 | + 'sd' => 'Sudan', |
| 417 | + 'sr' => 'Suriname', |
| 418 | + 'sj' => 'Svalbard and Jan Mayen', |
| 419 | + 'sz' => 'Swaziland', |
| 420 | + 'se' => 'Sweden', |
| 421 | + 'ch' => 'Switzerland', |
| 422 | + 'sy' => 'Syrian Arab Republic', |
| 423 | + 'tj' => 'Tajikistan', |
| 424 | + 'tz' => 'Tanzania, United Republic of', |
| 425 | + 'th' => 'Thailand', |
| 426 | + 'tl' => 'Timor-leste', |
| 427 | + 'tg' => 'Togo', |
| 428 | + 'tk' => 'Tokelau', |
| 429 | + 'to' => 'Tonga', |
| 430 | + 'tt' => 'Trinidad and Tobago', |
| 431 | + 'tn' => 'Tunisia', |
| 432 | + 'tr' => 'Turkey', |
| 433 | + 'tm' => 'Turkmenistan', |
| 434 | + 'tc' => 'Turks and Caicos Islands', |
| 435 | + 'tv' => 'Tuvalú', |
| 436 | + 'ug' => 'Uganda', |
| 437 | + 'ua' => 'Ucrania', |
| 438 | + 'ae' => 'Emiratos Árabes Unidos', |
| 439 | + 'gb' => 'Reino Unido', |
| 440 | + 'us' => 'Estados Unidos', |
| 441 | + 'um' => 'United States Minor Outlying Islands', |
| 442 | + 'uy' => 'Uruguay', |
| 443 | + 'uz' => 'Uzbekistán', |
| 444 | + 'vu' => 'Vanuatú', |
| 445 | + 've' => 'Venezuela', |
| 446 | + 'vn' => 'VietNam', |
| 447 | + 'vg' => 'Virgin Islands, British', |
| 448 | + 'vi' => 'Virgin Islands, U.S.', |
| 449 | + 'wf' => 'Wallis and Futuna', |
| 450 | + 'eh' => 'Western Sahara', |
| 451 | + 'ye' => 'Yemen', |
| 452 | + 'zm' => 'Zambia', |
| 453 | + 'zw' => 'Zimbabwe' |
454 | 454 | ); |
Index: trunk/wikimania/wmreg/includes/language_fr.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | 'months' => array( NULL, 'Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre' ), |
29 | 29 | 'day' => '', |
30 | 30 | 'title2' => |
31 | | -' <p><strong>Compétences linguistiques</strong></p>', |
| 31 | +' <p><strong>Compétences linguistiques</strong></p>', |
32 | 32 | 'langn' => 'Langue maternelle', |
33 | 33 | 'lang' => 'Autres langues', |
34 | 34 | 'select_lang' => 'Choisir une langue', |
— | — | @@ -208,246 +208,246 @@ |
209 | 209 | ); |
210 | 210 | |
211 | 211 | $lang_countries = array( |
212 | | - 'af' => 'Afghanistan', |
213 | | - 'ax' => 'Åland', |
214 | | - 'al' => 'Albanie', |
215 | | - 'dz' => 'Algérie', |
216 | | - 'ad' => 'Andorre', |
217 | | - 'ao' => 'Angola', |
218 | | - 'ai' => 'Anguilla', |
219 | | - 'aq' => 'Antarctique', |
220 | | - 'ag' => 'Antigua und Barbuda', |
221 | | - 'ar' => 'Argentine', |
222 | | - 'am' => 'Arménie', |
223 | | - 'aw' => 'Aruba', |
224 | | - 'au' => 'Australie', |
225 | | - 'at' => 'Autriche', |
226 | | - 'az' => 'Azerbaijan', |
227 | | - 'bs' => 'Bahamas', |
228 | | - 'bh' => 'Bahrain', |
229 | | - 'bd' => 'Bangladesh', |
230 | | - 'bb' => 'Barbados', |
231 | | - 'by' => 'Biélorussie', |
232 | | - 'be' => 'Belgique', |
233 | | - 'bz' => 'Belize', |
234 | | - 'bj' => 'Bénin', |
235 | | - 'bm' => 'Bermudes', |
236 | | - 'bt' => 'Bhutan', |
237 | | - 'bo' => 'Bolivie', |
238 | | - 'ba' => 'Bosnie-Herzégovine', |
239 | | - 'bw' => 'Botswana', |
240 | | - 'bv' => 'Bouvet Island', |
241 | | - 'br' => 'Brésil', |
242 | | - 'io' => 'British Indian Ocean Territory', |
243 | | - 'bn' => 'Brunei Darussalam', |
244 | | - 'bg' => 'Bulgarie', |
245 | | - 'bf' => 'Burkina Faso', |
246 | | - 'mm' => 'Birmanie (Myanmar)', |
247 | | - 'bi' => 'Burundi', |
248 | | - 'kh' => 'Cambodge', |
249 | | - 'cm' => 'Cameroun', |
250 | | - 'ca' => 'Canada', |
251 | | - 'cv' => 'Cap-Vert', |
252 | | - 'ky' => 'Îles Cayman', |
253 | | - 'cf' => 'République centrafricaine', |
254 | | - 'td' => 'Tchad', |
255 | | - 'cl' => 'Chili', |
256 | | - 'hk' => 'Hong Kong SAR', |
257 | | - 'cn' => 'République populaire de Chine', |
258 | | - 'tw' => 'République de Chine (Taiwan)', |
259 | | - 'cx' => 'Christmas Island', |
260 | | - 'cc' => 'Cocos (keeling) Islands', |
261 | | - 'co' => 'Colombie', |
262 | | - 'km' => 'Comoros', |
263 | | - 'cg' => 'Congo', |
264 | | - 'cd' => 'République démocratique du Congo', |
265 | | - 'ck' => 'Îles Cook', |
266 | | - 'cr' => 'Costa Rica', |
267 | | - 'ci' => 'Cote D\'ivoire', |
268 | | - 'hr' => 'Croatie', |
269 | | - 'cu' => 'Cuba', |
270 | | - 'cy' => 'Chypre', |
271 | | - 'cz' => 'Czech Republic', |
272 | | - 'dk' => 'Danemark', |
273 | | - 'dj' => 'Djibouti', |
274 | | - 'dm' => 'Dominique', |
275 | | - 'do' => 'République dominicaine', |
276 | | - 'ec' => 'Équateur', |
277 | | - 'eg' => 'Égypte', |
278 | | - 'sv' => 'El Salvador', |
279 | | - 'gq' => 'Guinée équatoriale', |
280 | | - 'er' => 'Érythrée', |
281 | | - 'ee' => 'Estonie', |
282 | | - 'et' => 'Éthiopie', |
283 | | - 'fk' => 'Falkland Islands (malvinas)', |
284 | | - 'fo' => 'Faroe Islands', |
285 | | - 'fj' => 'Fidji', |
286 | | - 'fi' => 'Finlande', |
287 | | - 'fr' => 'France', |
288 | | - 'gf' => 'Guyane française', |
289 | | - 'pf' => 'Polynésie française', |
290 | | - 'tf' => 'Territoires français du Sud', |
291 | | - 'ga' => 'Gabon', |
292 | | - 'gm' => 'Gambie', |
293 | | - 'ge' => 'Géorgie', |
294 | | - 'de' => 'Allemagne', |
295 | | - 'gh' => 'Ghana', |
296 | | - 'gi' => 'Gibraltar', |
297 | | - 'gr' => 'Grèce', |
298 | | - 'gl' => 'Greenland', |
299 | | - 'gd' => 'Grenada', |
300 | | - 'gp' => 'Guadeloupe', |
301 | | - 'gu' => 'Guam', |
302 | | - 'gt' => 'Guatemala', |
303 | | - 'gn' => 'Guinée', |
304 | | - 'gw' => 'Guinea-Bissau', |
305 | | - 'gy' => 'Guyane', |
306 | | - 'ht' => 'Haïti', |
307 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
308 | | - 'va' => 'Holy See (Vatican City)', |
309 | | - 'hn' => 'Honduras', |
310 | | - 'hu' => 'Hongrie', |
311 | | - 'is' => 'Islande', |
312 | | - 'in' => 'Inde', |
313 | | - 'id' => 'Indonésie', |
314 | | - 'ir' => 'Iran', |
315 | | - 'iq' => 'Irak', |
316 | | - 'ie' => 'Irelande', |
317 | | - 'il' => 'Israël', |
318 | | - 'it' => 'Italie', |
319 | | - 'jm' => 'Jamaique', |
320 | | - 'jp' => 'Japon', |
321 | | - 'jo' => 'Jordanie', |
322 | | - 'kz' => 'Kazakhstan', |
323 | | - 'ke' => 'Kenya', |
324 | | - 'ki' => 'Kiribati', |
325 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
326 | | - 'kr' => 'Republic of Korea', |
327 | | - 'kw' => 'Kuwait', |
328 | | - 'kg' => 'Kyrgyzstan', |
329 | | - 'la' => 'Lao People\'s Democratic Republic', |
330 | | - 'lv' => 'Latvia', |
331 | | - 'lb' => 'Liban', |
332 | | - 'ls' => 'Lesotho', |
333 | | - 'lr' => 'Libéria', |
334 | | - 'ly' => 'Libyan Arab Jamahiriya', |
335 | | - 'li' => 'Liechtenstein', |
336 | | - 'lt' => 'Lituanie', |
337 | | - 'lu' => 'Luxembourg', |
338 | | - 'mo' => 'Macao', |
339 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
340 | | - 'mg' => 'Madagascar', |
341 | | - 'mw' => 'Malawi', |
342 | | - 'my' => 'Malaysia', |
343 | | - 'mv' => 'Maldives', |
344 | | - 'ml' => 'Mali', |
345 | | - 'mt' => 'Malte', |
346 | | - 'mh' => 'Marshall Islands', |
347 | | - 'mq' => 'Martinique', |
348 | | - 'mr' => 'Mauritania', |
349 | | - 'mu' => 'Mauritius', |
350 | | - 'yt' => 'Mayotte', |
351 | | - 'mx' => 'Mexique', |
352 | | - 'fm' => 'Micronesia, Federated States of', |
353 | | - 'md' => 'Moldova, Republic of', |
354 | | - 'mc' => 'Monaco SAR', |
355 | | - 'mn' => 'Mongolie', |
356 | | - 'me' => 'Montenegro', |
357 | | - 'ms' => 'Montserrat', |
358 | | - 'ma' => 'Maroc', |
359 | | - 'mz' => 'Mozambique', |
360 | | - 'na' => 'Namibie', |
361 | | - 'nr' => 'Nauru', |
362 | | - 'np' => 'Népal', |
363 | | - 'nl' => 'Pays-Bas', |
364 | | - 'an' => 'Netherlands Antilles', |
365 | | - 'nc' => 'Nouvelle Calédonie', |
366 | | - 'nz' => 'Nouvelle-Zélande', |
367 | | - 'ni' => 'Nicaragua', |
368 | | - 'ne' => 'Niger', |
369 | | - 'ng' => 'Nigeria', |
370 | | - 'nu' => 'Niue', |
371 | | - 'nf' => 'Norfolk Island', |
372 | | - 'mp' => 'Northern Mariana Islands', |
373 | | - 'no' => 'Norvège', |
374 | | - 'om' => 'Oman', |
375 | | - 'pk' => 'Pakistan', |
376 | | - 'pw' => 'Palau', |
377 | | - 'ps' => 'Palestinian Territory', |
378 | | - 'pa' => 'Panama', |
379 | | - 'pg' => 'Papua New Guinea', |
380 | | - 'py' => 'Paraguay', |
381 | | - 'pe' => 'Pérou', |
382 | | - 'ph' => 'Philippines', |
383 | | - 'pn' => 'Pitcairn', |
384 | | - 'pl' => 'Pologne', |
385 | | - 'pt' => 'Portugal', |
386 | | - 'pr' => 'Puerto Rico', |
387 | | - 'qa' => 'Qatar', |
388 | | - 're' => 'Réunion', |
389 | | - 'ro' => 'Roumanie', |
390 | | - 'ru' => 'Russian Federation', |
391 | | - 'rw' => 'Rwanda', |
392 | | - 'eh' => 'Sahara occidental', |
393 | | - 'as' => 'Samoa américaines', |
394 | | - 'sh' => 'Saint Helena', |
395 | | - 'kn' => 'Saint Kitts and Nevis', |
396 | | - 'lc' => 'Saint Lucie', |
397 | | - 'pm' => 'Saint Pierre et Miquelon', |
398 | | - 'vc' => 'Saint Vincent and the Grenadines', |
399 | | - 'ws' => 'Samoa', |
400 | | - 'sm' => 'San Marino', |
401 | | - 'st' => 'Sao Tome and Principe', |
402 | | - 'sa' => 'Saudi Arabia', |
403 | | - 'sn' => 'Sénégal', |
404 | | - 'rs' => 'Serbie', |
405 | | - 'sc' => 'Seychelles', |
406 | | - 'sl' => 'Sierra Leone', |
407 | | - 'sg' => 'Singapour', |
408 | | - 'sk' => 'Slovaquie', |
409 | | - 'si' => 'Slovénie', |
410 | | - 'sb' => 'Solomon Islands', |
411 | | - 'so' => 'Somalie', |
412 | | - 'za' => 'Afrique du Sud', |
413 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
414 | | - 'es' => 'Spain', |
415 | | - 'lk' => 'Sri Lanka', |
416 | | - 'sd' => 'Sudan', |
417 | | - 'sr' => 'Suriname', |
418 | | - 'sj' => 'Svalbard and Jan Mayen', |
419 | | - 'sz' => 'Swaziland', |
420 | | - 'se' => 'Suède', |
421 | | - 'ch' => 'Suisse', |
422 | | - 'sy' => 'Syrie', |
423 | | - 'tj' => 'Tajikistan', |
424 | | - 'tz' => 'Tanzania, United Republic of', |
425 | | - 'th' => 'Thailand', |
426 | | - 'tl' => 'Timor-leste', |
427 | | - 'tg' => 'Togo', |
428 | | - 'tk' => 'Tokelau', |
429 | | - 'to' => 'Tonga', |
430 | | - 'tt' => 'Trinidad and Tobago', |
431 | | - 'tn' => 'Tunisie', |
432 | | - 'tr' => 'Turquie', |
433 | | - 'tm' => 'Turkmenistan', |
434 | | - 'tc' => 'Turks and Caicos Islands', |
435 | | - 'tv' => 'Tuvalu', |
436 | | - 'ug' => 'Uganda', |
437 | | - 'ua' => 'Ukraine', |
438 | | - 'ae' => 'United Arab Emirates', |
439 | | - 'gb' => 'United Kingdom', |
440 | | - 'us' => 'United States', |
441 | | - 'um' => 'United States Minor Outlying Islands', |
442 | | - 'uy' => 'Uruguay', |
443 | | - 'uz' => 'Uzbekistan', |
444 | | - 'vu' => 'Vanuatu', |
445 | | - 've' => 'Venezuela', |
446 | | - 'vn' => 'Viet Nam', |
447 | | - 'vg' => 'Virgin Islands, British', |
448 | | - 'vi' => 'Virgin Islands, U.S.', |
449 | | - 'wf' => 'Wallis and Futuna', |
450 | | - 'ye' => 'Yemen', |
451 | | - 'zm' => 'Zambie', |
452 | | - 'zw' => 'Zimbabwe' |
| 212 | + 'af' => 'Afghanistan', |
| 213 | + 'ax' => 'Åland', |
| 214 | + 'al' => 'Albanie', |
| 215 | + 'dz' => 'Algérie', |
| 216 | + 'ad' => 'Andorre', |
| 217 | + 'ao' => 'Angola', |
| 218 | + 'ai' => 'Anguilla', |
| 219 | + 'aq' => 'Antarctique', |
| 220 | + 'ag' => 'Antigua und Barbuda', |
| 221 | + 'ar' => 'Argentine', |
| 222 | + 'am' => 'Arménie', |
| 223 | + 'aw' => 'Aruba', |
| 224 | + 'au' => 'Australie', |
| 225 | + 'at' => 'Autriche', |
| 226 | + 'az' => 'Azerbaijan', |
| 227 | + 'bs' => 'Bahamas', |
| 228 | + 'bh' => 'Bahrain', |
| 229 | + 'bd' => 'Bangladesh', |
| 230 | + 'bb' => 'Barbados', |
| 231 | + 'by' => 'Biélorussie', |
| 232 | + 'be' => 'Belgique', |
| 233 | + 'bz' => 'Belize', |
| 234 | + 'bj' => 'Bénin', |
| 235 | + 'bm' => 'Bermudes', |
| 236 | + 'bt' => 'Bhutan', |
| 237 | + 'bo' => 'Bolivie', |
| 238 | + 'ba' => 'Bosnie-Herzégovine', |
| 239 | + 'bw' => 'Botswana', |
| 240 | + 'bv' => 'Bouvet Island', |
| 241 | + 'br' => 'Brésil', |
| 242 | + 'io' => 'British Indian Ocean Territory', |
| 243 | + 'bn' => 'Brunei Darussalam', |
| 244 | + 'bg' => 'Bulgarie', |
| 245 | + 'bf' => 'Burkina Faso', |
| 246 | + 'mm' => 'Birmanie (Myanmar)', |
| 247 | + 'bi' => 'Burundi', |
| 248 | + 'kh' => 'Cambodge', |
| 249 | + 'cm' => 'Cameroun', |
| 250 | + 'ca' => 'Canada', |
| 251 | + 'cv' => 'Cap-Vert', |
| 252 | + 'ky' => 'Îles Cayman', |
| 253 | + 'cf' => 'République centrafricaine', |
| 254 | + 'td' => 'Tchad', |
| 255 | + 'cl' => 'Chili', |
| 256 | + 'hk' => 'Hong Kong SAR', |
| 257 | + 'cn' => 'République populaire de Chine', |
| 258 | + 'tw' => 'République de Chine (Taiwan)', |
| 259 | + 'cx' => 'Christmas Island', |
| 260 | + 'cc' => 'Cocos (keeling) Islands', |
| 261 | + 'co' => 'Colombie', |
| 262 | + 'km' => 'Comoros', |
| 263 | + 'cg' => 'Congo', |
| 264 | + 'cd' => 'République démocratique du Congo', |
| 265 | + 'ck' => 'Îles Cook', |
| 266 | + 'cr' => 'Costa Rica', |
| 267 | + 'ci' => 'Cote D\'ivoire', |
| 268 | + 'hr' => 'Croatie', |
| 269 | + 'cu' => 'Cuba', |
| 270 | + 'cy' => 'Chypre', |
| 271 | + 'cz' => 'Czech Republic', |
| 272 | + 'dk' => 'Danemark', |
| 273 | + 'dj' => 'Djibouti', |
| 274 | + 'dm' => 'Dominique', |
| 275 | + 'do' => 'République dominicaine', |
| 276 | + 'ec' => 'Équateur', |
| 277 | + 'eg' => 'Égypte', |
| 278 | + 'sv' => 'El Salvador', |
| 279 | + 'gq' => 'Guinée équatoriale', |
| 280 | + 'er' => 'Érythrée', |
| 281 | + 'ee' => 'Estonie', |
| 282 | + 'et' => 'Éthiopie', |
| 283 | + 'fk' => 'Falkland Islands (malvinas)', |
| 284 | + 'fo' => 'Faroe Islands', |
| 285 | + 'fj' => 'Fidji', |
| 286 | + 'fi' => 'Finlande', |
| 287 | + 'fr' => 'France', |
| 288 | + 'gf' => 'Guyane française', |
| 289 | + 'pf' => 'Polynésie française', |
| 290 | + 'tf' => 'Territoires français du Sud', |
| 291 | + 'ga' => 'Gabon', |
| 292 | + 'gm' => 'Gambie', |
| 293 | + 'ge' => 'Géorgie', |
| 294 | + 'de' => 'Allemagne', |
| 295 | + 'gh' => 'Ghana', |
| 296 | + 'gi' => 'Gibraltar', |
| 297 | + 'gr' => 'Grèce', |
| 298 | + 'gl' => 'Greenland', |
| 299 | + 'gd' => 'Grenada', |
| 300 | + 'gp' => 'Guadeloupe', |
| 301 | + 'gu' => 'Guam', |
| 302 | + 'gt' => 'Guatemala', |
| 303 | + 'gn' => 'Guinée', |
| 304 | + 'gw' => 'Guinea-Bissau', |
| 305 | + 'gy' => 'Guyane', |
| 306 | + 'ht' => 'Haïti', |
| 307 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 308 | + 'va' => 'Holy See (Vatican City)', |
| 309 | + 'hn' => 'Honduras', |
| 310 | + 'hu' => 'Hongrie', |
| 311 | + 'is' => 'Islande', |
| 312 | + 'in' => 'Inde', |
| 313 | + 'id' => 'Indonésie', |
| 314 | + 'ir' => 'Iran', |
| 315 | + 'iq' => 'Irak', |
| 316 | + 'ie' => 'Irelande', |
| 317 | + 'il' => 'Israël', |
| 318 | + 'it' => 'Italie', |
| 319 | + 'jm' => 'Jamaique', |
| 320 | + 'jp' => 'Japon', |
| 321 | + 'jo' => 'Jordanie', |
| 322 | + 'kz' => 'Kazakhstan', |
| 323 | + 'ke' => 'Kenya', |
| 324 | + 'ki' => 'Kiribati', |
| 325 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 326 | + 'kr' => 'Republic of Korea', |
| 327 | + 'kw' => 'Kuwait', |
| 328 | + 'kg' => 'Kyrgyzstan', |
| 329 | + 'la' => 'Lao People\'s Democratic Republic', |
| 330 | + 'lv' => 'Latvia', |
| 331 | + 'lb' => 'Liban', |
| 332 | + 'ls' => 'Lesotho', |
| 333 | + 'lr' => 'Libéria', |
| 334 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 335 | + 'li' => 'Liechtenstein', |
| 336 | + 'lt' => 'Lituanie', |
| 337 | + 'lu' => 'Luxembourg', |
| 338 | + 'mo' => 'Macao', |
| 339 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 340 | + 'mg' => 'Madagascar', |
| 341 | + 'mw' => 'Malawi', |
| 342 | + 'my' => 'Malaysia', |
| 343 | + 'mv' => 'Maldives', |
| 344 | + 'ml' => 'Mali', |
| 345 | + 'mt' => 'Malte', |
| 346 | + 'mh' => 'Marshall Islands', |
| 347 | + 'mq' => 'Martinique', |
| 348 | + 'mr' => 'Mauritania', |
| 349 | + 'mu' => 'Mauritius', |
| 350 | + 'yt' => 'Mayotte', |
| 351 | + 'mx' => 'Mexique', |
| 352 | + 'fm' => 'Micronesia, Federated States of', |
| 353 | + 'md' => 'Moldova, Republic of', |
| 354 | + 'mc' => 'Monaco SAR', |
| 355 | + 'mn' => 'Mongolie', |
| 356 | + 'me' => 'Montenegro', |
| 357 | + 'ms' => 'Montserrat', |
| 358 | + 'ma' => 'Maroc', |
| 359 | + 'mz' => 'Mozambique', |
| 360 | + 'na' => 'Namibie', |
| 361 | + 'nr' => 'Nauru', |
| 362 | + 'np' => 'Népal', |
| 363 | + 'nl' => 'Pays-Bas', |
| 364 | + 'an' => 'Netherlands Antilles', |
| 365 | + 'nc' => 'Nouvelle Calédonie', |
| 366 | + 'nz' => 'Nouvelle-Zélande', |
| 367 | + 'ni' => 'Nicaragua', |
| 368 | + 'ne' => 'Niger', |
| 369 | + 'ng' => 'Nigeria', |
| 370 | + 'nu' => 'Niue', |
| 371 | + 'nf' => 'Norfolk Island', |
| 372 | + 'mp' => 'Northern Mariana Islands', |
| 373 | + 'no' => 'Norvège', |
| 374 | + 'om' => 'Oman', |
| 375 | + 'pk' => 'Pakistan', |
| 376 | + 'pw' => 'Palau', |
| 377 | + 'ps' => 'Palestinian Territory', |
| 378 | + 'pa' => 'Panama', |
| 379 | + 'pg' => 'Papua New Guinea', |
| 380 | + 'py' => 'Paraguay', |
| 381 | + 'pe' => 'Pérou', |
| 382 | + 'ph' => 'Philippines', |
| 383 | + 'pn' => 'Pitcairn', |
| 384 | + 'pl' => 'Pologne', |
| 385 | + 'pt' => 'Portugal', |
| 386 | + 'pr' => 'Puerto Rico', |
| 387 | + 'qa' => 'Qatar', |
| 388 | + 're' => 'Réunion', |
| 389 | + 'ro' => 'Roumanie', |
| 390 | + 'ru' => 'Russian Federation', |
| 391 | + 'rw' => 'Rwanda', |
| 392 | + 'eh' => 'Sahara occidental', |
| 393 | + 'as' => 'Samoa américaines', |
| 394 | + 'sh' => 'Saint Helena', |
| 395 | + 'kn' => 'Saint Kitts and Nevis', |
| 396 | + 'lc' => 'Saint Lucie', |
| 397 | + 'pm' => 'Saint Pierre et Miquelon', |
| 398 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 399 | + 'ws' => 'Samoa', |
| 400 | + 'sm' => 'San Marino', |
| 401 | + 'st' => 'Sao Tome and Principe', |
| 402 | + 'sa' => 'Saudi Arabia', |
| 403 | + 'sn' => 'Sénégal', |
| 404 | + 'rs' => 'Serbie', |
| 405 | + 'sc' => 'Seychelles', |
| 406 | + 'sl' => 'Sierra Leone', |
| 407 | + 'sg' => 'Singapour', |
| 408 | + 'sk' => 'Slovaquie', |
| 409 | + 'si' => 'Slovénie', |
| 410 | + 'sb' => 'Solomon Islands', |
| 411 | + 'so' => 'Somalie', |
| 412 | + 'za' => 'Afrique du Sud', |
| 413 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 414 | + 'es' => 'Spain', |
| 415 | + 'lk' => 'Sri Lanka', |
| 416 | + 'sd' => 'Sudan', |
| 417 | + 'sr' => 'Suriname', |
| 418 | + 'sj' => 'Svalbard and Jan Mayen', |
| 419 | + 'sz' => 'Swaziland', |
| 420 | + 'se' => 'Suède', |
| 421 | + 'ch' => 'Suisse', |
| 422 | + 'sy' => 'Syrie', |
| 423 | + 'tj' => 'Tajikistan', |
| 424 | + 'tz' => 'Tanzania, United Republic of', |
| 425 | + 'th' => 'Thailand', |
| 426 | + 'tl' => 'Timor-leste', |
| 427 | + 'tg' => 'Togo', |
| 428 | + 'tk' => 'Tokelau', |
| 429 | + 'to' => 'Tonga', |
| 430 | + 'tt' => 'Trinidad and Tobago', |
| 431 | + 'tn' => 'Tunisie', |
| 432 | + 'tr' => 'Turquie', |
| 433 | + 'tm' => 'Turkmenistan', |
| 434 | + 'tc' => 'Turks and Caicos Islands', |
| 435 | + 'tv' => 'Tuvalu', |
| 436 | + 'ug' => 'Uganda', |
| 437 | + 'ua' => 'Ukraine', |
| 438 | + 'ae' => 'United Arab Emirates', |
| 439 | + 'gb' => 'United Kingdom', |
| 440 | + 'us' => 'United States', |
| 441 | + 'um' => 'United States Minor Outlying Islands', |
| 442 | + 'uy' => 'Uruguay', |
| 443 | + 'uz' => 'Uzbekistan', |
| 444 | + 'vu' => 'Vanuatu', |
| 445 | + 've' => 'Venezuela', |
| 446 | + 'vn' => 'Viet Nam', |
| 447 | + 'vg' => 'Virgin Islands, British', |
| 448 | + 'vi' => 'Virgin Islands, U.S.', |
| 449 | + 'wf' => 'Wallis and Futuna', |
| 450 | + 'ye' => 'Yemen', |
| 451 | + 'zm' => 'Zambie', |
| 452 | + 'zw' => 'Zimbabwe' |
453 | 453 | ); |
454 | 454 | |
Index: trunk/wikimania/wmreg/includes/language_de.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | 'months' => array( NULL, 'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember' ), |
29 | 29 | 'day' => '', |
30 | 30 | 'title2' => |
31 | | -' <p><strong>Sprachkenntnisse</strong></p>', |
| 31 | +' <p><strong>Sprachkenntnisse</strong></p>', |
32 | 32 | 'langn' => 'Muttersprache', |
33 | 33 | 'lang' => 'Weitere Sprachen', |
34 | 34 | 'select_lang' => 'bitte Sprache auswählen', |
— | — | @@ -208,245 +208,245 @@ |
209 | 209 | ); |
210 | 210 | |
211 | 211 | $lang_countries = array( |
212 | | - 'af' => 'Afghanistan', |
213 | | - 'ax' => 'Aland Islands', |
214 | | - 'al' => 'Albanien', |
215 | | - 'dz' => 'Algerien', |
216 | | - 'as' => 'American Samoa', |
217 | | - 'ad' => 'Andorra', |
218 | | - 'ao' => 'Angola', |
219 | | - 'ai' => 'Anguilla', |
220 | | - 'aq' => 'Antarctica', |
221 | | - 'ag' => 'Antigua und Barbuda', |
222 | | - 'ar' => 'Argentinien', |
223 | | - 'am' => 'Armenien', |
224 | | - 'aw' => 'Aruba', |
225 | | - 'au' => 'Australien', |
226 | | - 'at' => 'Österreich', |
227 | | - 'az' => 'Azerbaijan', |
228 | | - 'bs' => 'Bahamas', |
229 | | - 'bh' => 'Bahrain', |
230 | | - 'bd' => 'Bangladesh', |
231 | | - 'bb' => 'Barbados', |
232 | | - 'by' => 'Weissrussland', |
233 | | - 'be' => 'Belgien', |
234 | | - 'bz' => 'Belize', |
235 | | - 'bj' => 'Benin', |
236 | | - 'bm' => 'Bermuda', |
237 | | - 'bt' => 'Bhutan', |
238 | | - 'bo' => 'Bolivien', |
239 | | - 'ba' => 'Bosnien und Herzegovina', |
240 | | - 'bw' => 'Botswana', |
241 | | - 'bv' => 'Bouvet Island', |
242 | | - 'br' => 'Brasilien', |
243 | | - 'io' => 'British Indian Ocean Territory', |
244 | | - 'bn' => 'Brunei Darussalam', |
245 | | - 'bg' => 'Bulgarien', |
246 | | - 'bf' => 'Burkina Faso', |
247 | | - 'mm' => 'Burma (Myanmar)', |
248 | | - 'bi' => 'Burundi', |
249 | | - 'kh' => 'Kambodscha', |
250 | | - 'cm' => 'Kamerun', |
251 | | - 'ca' => 'Kanada', |
252 | | - 'cv' => 'Cape Verde', |
253 | | - 'ky' => 'Cayman Islands', |
254 | | - 'cf' => 'Zentralafrikanische Republik', |
255 | | - 'td' => 'Tschad', |
256 | | - 'cl' => 'Chile', |
257 | | - 'hk' => 'Hong Kong SAR', |
258 | | - 'cn' => 'Volksrepublik China', |
259 | | - 'tw' => 'Republik China (Taiwan)', |
260 | | - 'cx' => 'Christmas Island', |
261 | | - 'cc' => 'Cocos (keeling) Islands', |
262 | | - 'co' => 'Colombia', |
263 | | - 'km' => 'Comoros', |
264 | | - 'cg' => 'Congo', |
265 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
266 | | - 'ck' => 'Cook Islands', |
267 | | - 'cr' => 'Costa Rica', |
268 | | - 'ci' => 'Cote D\'ivoire', |
269 | | - 'hr' => 'Croatia', |
270 | | - 'cu' => 'Cuba', |
271 | | - 'cy' => 'Cyprus', |
272 | | - 'cz' => 'Czech Republic', |
273 | | - 'dk' => 'Dänemark', |
274 | | - 'dj' => 'Djibouti', |
275 | | - 'dm' => 'Dominica', |
276 | | - 'do' => 'Dominican Republic', |
277 | | - 'ec' => 'Equador', |
278 | | - 'eg' => 'Ägypten', |
279 | | - 'sv' => 'El Salvador', |
280 | | - 'gq' => 'Equatorial Guinea', |
281 | | - 'er' => 'Eritrea', |
282 | | - 'ee' => 'Estland', |
283 | | - 'et' => 'Äthiopien', |
284 | | - 'fk' => 'Falkland Islands (malvinas)', |
285 | | - 'fo' => 'Faroe Islands', |
286 | | - 'fj' => 'Fiji', |
287 | | - 'fi' => 'Finnland', |
288 | | - 'fr' => 'Frankreich', |
289 | | - 'gf' => 'French Guiana', |
290 | | - 'pf' => 'French Polynesia', |
291 | | - 'tf' => 'French Southern Territories', |
292 | | - 'ga' => 'Gabon', |
293 | | - 'gm' => 'Gambia', |
294 | | - 'ge' => 'Georgia', |
295 | | - 'de' => 'Deutschland', |
296 | | - 'gh' => 'Ghana', |
297 | | - 'gi' => 'Gibraltar', |
298 | | - 'gr' => 'Greece', |
299 | | - 'gl' => 'Greenland', |
300 | | - 'gd' => 'Grenada', |
301 | | - 'gp' => 'Guadeloupe', |
302 | | - 'gu' => 'Guam', |
303 | | - 'gt' => 'Guatemala', |
304 | | - 'gn' => 'Guinea', |
305 | | - 'gw' => 'Guinea-Bissau', |
306 | | - 'gy' => 'Guyana', |
307 | | - 'ht' => 'Haiti', |
308 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
309 | | - 'va' => 'Holy See (Vatican City)', |
310 | | - 'hn' => 'Honduras', |
311 | | - 'hu' => 'Hungary', |
312 | | - 'is' => 'Iceland', |
313 | | - 'in' => 'India', |
314 | | - 'id' => 'Indonesia', |
315 | | - 'ir' => 'Iran, Islamic Republic of', |
316 | | - 'iq' => 'Iraq', |
317 | | - 'ie' => 'Ireland', |
318 | | - 'il' => 'Israel', |
319 | | - 'it' => 'Italy', |
320 | | - 'jm' => 'Jamaica', |
321 | | - 'jp' => 'Japan', |
322 | | - 'jo' => 'Jordan', |
323 | | - 'kz' => 'Kazakhstan', |
324 | | - 'ke' => 'Kenya', |
325 | | - 'ki' => 'Kiribati', |
326 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
327 | | - 'kr' => 'Republic of Korea', |
328 | | - 'kw' => 'Kuwait', |
329 | | - 'kg' => 'Kyrgyzstan', |
330 | | - 'la' => 'Lao People\'s Democratic Republic', |
331 | | - 'lv' => 'Latvia', |
332 | | - 'lb' => 'Lebanon', |
333 | | - 'ls' => 'Lesotho', |
334 | | - 'lr' => 'Liberia', |
335 | | - 'ly' => 'Libyan Arab Jamahiriya', |
336 | | - 'li' => 'Liechtenstein', |
337 | | - 'lt' => 'Lithuania', |
338 | | - 'lu' => 'Luxembourg', |
339 | | - 'mo' => 'Macao', |
340 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
341 | | - 'mg' => 'Madagascar', |
342 | | - 'mw' => 'Malawi', |
343 | | - 'my' => 'Malaysia', |
344 | | - 'mv' => 'Maldives', |
345 | | - 'ml' => 'Mali', |
346 | | - 'mt' => 'Malta', |
347 | | - 'mh' => 'Marshall Islands', |
348 | | - 'mq' => 'Martinique', |
349 | | - 'mr' => 'Mauritania', |
350 | | - 'mu' => 'Mauritius', |
351 | | - 'yt' => 'Mayotte', |
352 | | - 'mx' => 'Mexico', |
353 | | - 'fm' => 'Micronesia, Federated States of', |
354 | | - 'md' => 'Moldova, Republic of', |
355 | | - 'mc' => 'Monaco SAR', |
356 | | - 'mn' => 'Mongolia', |
357 | | - 'me' => 'Montenegro', |
358 | | - 'ms' => 'Montserrat', |
359 | | - 'ma' => 'Morocco', |
360 | | - 'mz' => 'Mozambique', |
361 | | - 'na' => 'Namibia', |
362 | | - 'nr' => 'Nauru', |
363 | | - 'np' => 'Nepal', |
364 | | - 'nl' => 'Netherlands', |
365 | | - 'an' => 'Netherlands Antilles', |
366 | | - 'nc' => 'New Caledonia', |
367 | | - 'nz' => 'New Zealand', |
368 | | - 'ni' => 'Nicaragua', |
369 | | - 'ne' => 'Niger', |
370 | | - 'ng' => 'Nigeria', |
371 | | - 'nu' => 'Niue', |
372 | | - 'nf' => 'Norfolk Island', |
373 | | - 'mp' => 'Northern Mariana Islands', |
374 | | - 'no' => 'Norway', |
375 | | - 'om' => 'Oman', |
376 | | - 'pk' => 'Pakistan', |
377 | | - 'pw' => 'Palau', |
378 | | - 'ps' => 'Palestinian Territory', |
379 | | - 'pa' => 'Panama', |
380 | | - 'pg' => 'Papua New Guinea', |
381 | | - 'py' => 'Paraguay', |
382 | | - 'pe' => 'Peru', |
383 | | - 'ph' => 'Philippines', |
384 | | - 'pn' => 'Pitcairn', |
385 | | - 'pl' => 'Poland', |
386 | | - 'pt' => 'Portugal', |
387 | | - 'pr' => 'Puerto Rico', |
388 | | - 'qa' => 'Qatar', |
389 | | - 're' => 'Reunion', |
390 | | - 'ro' => 'Romania', |
391 | | - 'ru' => 'Russian Federation', |
392 | | - 'rw' => 'Rwanda', |
393 | | - 'sh' => 'Saint Helena', |
394 | | - 'kn' => 'Saint Kitts and Nevis', |
395 | | - 'lc' => 'Saint Lucia', |
396 | | - 'pm' => 'Saint Pierre and Miquelon', |
397 | | - 'vc' => 'Saint Vincent and the Grenadines', |
398 | | - 'ws' => 'Samoa', |
399 | | - 'sm' => 'San Marino', |
400 | | - 'st' => 'Sao Tome and Principe', |
401 | | - 'sa' => 'Saudi Arabia', |
402 | | - 'sn' => 'Senegal', |
403 | | - 'rs' => 'Serbia', |
404 | | - 'sc' => 'Seychelles', |
405 | | - 'sl' => 'Sierra Leone', |
406 | | - 'sg' => 'Singapore', |
407 | | - 'sk' => 'Slovakia', |
408 | | - 'si' => 'Slovenia', |
409 | | - 'sb' => 'Solomon Islands', |
410 | | - 'so' => 'Somalia', |
411 | | - 'za' => 'South Africa', |
412 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
413 | | - 'es' => 'Spain', |
414 | | - 'lk' => 'Sri Lanka', |
415 | | - 'sd' => 'Sudan', |
416 | | - 'sr' => 'Suriname', |
417 | | - 'sj' => 'Svalbard and Jan Mayen', |
418 | | - 'sz' => 'Swaziland', |
419 | | - 'se' => 'Sweden', |
420 | | - 'ch' => 'Switzerland', |
421 | | - 'sy' => 'Syrian Arab Republic', |
422 | | - 'tj' => 'Tajikistan', |
423 | | - 'tz' => 'Tanzania, United Republic of', |
424 | | - 'th' => 'Thailand', |
425 | | - 'tl' => 'Timor-leste', |
426 | | - 'tg' => 'Togo', |
427 | | - 'tk' => 'Tokelau', |
428 | | - 'to' => 'Tonga', |
429 | | - 'tt' => 'Trinidad and Tobago', |
430 | | - 'tn' => 'Tunisia', |
431 | | - 'tr' => 'Turkey', |
432 | | - 'tm' => 'Turkmenistan', |
433 | | - 'tc' => 'Turks and Caicos Islands', |
434 | | - 'tv' => 'Tuvalu', |
435 | | - 'ug' => 'Uganda', |
436 | | - 'ua' => 'Ukraine', |
437 | | - 'ae' => 'United Arab Emirates', |
438 | | - 'gb' => 'United Kingdom', |
439 | | - 'us' => 'United States', |
440 | | - 'um' => 'United States Minor Outlying Islands', |
441 | | - 'uy' => 'Uruguay', |
442 | | - 'uz' => 'Uzbekistan', |
443 | | - 'vu' => 'Vanuatu', |
444 | | - 've' => 'Venezuela', |
445 | | - 'vn' => 'Viet Nam', |
446 | | - 'vg' => 'Virgin Islands, British', |
447 | | - 'vi' => 'Virgin Islands, U.S.', |
448 | | - 'wf' => 'Wallis and Futuna', |
449 | | - 'eh' => 'Western Sahara', |
450 | | - 'ye' => 'Yemen', |
451 | | - 'zm' => 'Zambia', |
452 | | - 'zw' => 'Zimbabwe' |
| 212 | + 'af' => 'Afghanistan', |
| 213 | + 'ax' => 'Aland Islands', |
| 214 | + 'al' => 'Albanien', |
| 215 | + 'dz' => 'Algerien', |
| 216 | + 'as' => 'American Samoa', |
| 217 | + 'ad' => 'Andorra', |
| 218 | + 'ao' => 'Angola', |
| 219 | + 'ai' => 'Anguilla', |
| 220 | + 'aq' => 'Antarctica', |
| 221 | + 'ag' => 'Antigua und Barbuda', |
| 222 | + 'ar' => 'Argentinien', |
| 223 | + 'am' => 'Armenien', |
| 224 | + 'aw' => 'Aruba', |
| 225 | + 'au' => 'Australien', |
| 226 | + 'at' => 'Österreich', |
| 227 | + 'az' => 'Azerbaijan', |
| 228 | + 'bs' => 'Bahamas', |
| 229 | + 'bh' => 'Bahrain', |
| 230 | + 'bd' => 'Bangladesh', |
| 231 | + 'bb' => 'Barbados', |
| 232 | + 'by' => 'Weissrussland', |
| 233 | + 'be' => 'Belgien', |
| 234 | + 'bz' => 'Belize', |
| 235 | + 'bj' => 'Benin', |
| 236 | + 'bm' => 'Bermuda', |
| 237 | + 'bt' => 'Bhutan', |
| 238 | + 'bo' => 'Bolivien', |
| 239 | + 'ba' => 'Bosnien und Herzegovina', |
| 240 | + 'bw' => 'Botswana', |
| 241 | + 'bv' => 'Bouvet Island', |
| 242 | + 'br' => 'Brasilien', |
| 243 | + 'io' => 'British Indian Ocean Territory', |
| 244 | + 'bn' => 'Brunei Darussalam', |
| 245 | + 'bg' => 'Bulgarien', |
| 246 | + 'bf' => 'Burkina Faso', |
| 247 | + 'mm' => 'Burma (Myanmar)', |
| 248 | + 'bi' => 'Burundi', |
| 249 | + 'kh' => 'Kambodscha', |
| 250 | + 'cm' => 'Kamerun', |
| 251 | + 'ca' => 'Kanada', |
| 252 | + 'cv' => 'Cape Verde', |
| 253 | + 'ky' => 'Cayman Islands', |
| 254 | + 'cf' => 'Zentralafrikanische Republik', |
| 255 | + 'td' => 'Tschad', |
| 256 | + 'cl' => 'Chile', |
| 257 | + 'hk' => 'Hong Kong SAR', |
| 258 | + 'cn' => 'Volksrepublik China', |
| 259 | + 'tw' => 'Republik China (Taiwan)', |
| 260 | + 'cx' => 'Christmas Island', |
| 261 | + 'cc' => 'Cocos (keeling) Islands', |
| 262 | + 'co' => 'Colombia', |
| 263 | + 'km' => 'Comoros', |
| 264 | + 'cg' => 'Congo', |
| 265 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 266 | + 'ck' => 'Cook Islands', |
| 267 | + 'cr' => 'Costa Rica', |
| 268 | + 'ci' => 'Cote D\'ivoire', |
| 269 | + 'hr' => 'Croatia', |
| 270 | + 'cu' => 'Cuba', |
| 271 | + 'cy' => 'Cyprus', |
| 272 | + 'cz' => 'Czech Republic', |
| 273 | + 'dk' => 'Dänemark', |
| 274 | + 'dj' => 'Djibouti', |
| 275 | + 'dm' => 'Dominica', |
| 276 | + 'do' => 'Dominican Republic', |
| 277 | + 'ec' => 'Equador', |
| 278 | + 'eg' => 'Ägypten', |
| 279 | + 'sv' => 'El Salvador', |
| 280 | + 'gq' => 'Equatorial Guinea', |
| 281 | + 'er' => 'Eritrea', |
| 282 | + 'ee' => 'Estland', |
| 283 | + 'et' => 'Äthiopien', |
| 284 | + 'fk' => 'Falkland Islands (malvinas)', |
| 285 | + 'fo' => 'Faroe Islands', |
| 286 | + 'fj' => 'Fiji', |
| 287 | + 'fi' => 'Finnland', |
| 288 | + 'fr' => 'Frankreich', |
| 289 | + 'gf' => 'French Guiana', |
| 290 | + 'pf' => 'French Polynesia', |
| 291 | + 'tf' => 'French Southern Territories', |
| 292 | + 'ga' => 'Gabon', |
| 293 | + 'gm' => 'Gambia', |
| 294 | + 'ge' => 'Georgia', |
| 295 | + 'de' => 'Deutschland', |
| 296 | + 'gh' => 'Ghana', |
| 297 | + 'gi' => 'Gibraltar', |
| 298 | + 'gr' => 'Greece', |
| 299 | + 'gl' => 'Greenland', |
| 300 | + 'gd' => 'Grenada', |
| 301 | + 'gp' => 'Guadeloupe', |
| 302 | + 'gu' => 'Guam', |
| 303 | + 'gt' => 'Guatemala', |
| 304 | + 'gn' => 'Guinea', |
| 305 | + 'gw' => 'Guinea-Bissau', |
| 306 | + 'gy' => 'Guyana', |
| 307 | + 'ht' => 'Haiti', |
| 308 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 309 | + 'va' => 'Holy See (Vatican City)', |
| 310 | + 'hn' => 'Honduras', |
| 311 | + 'hu' => 'Hungary', |
| 312 | + 'is' => 'Iceland', |
| 313 | + 'in' => 'India', |
| 314 | + 'id' => 'Indonesia', |
| 315 | + 'ir' => 'Iran, Islamic Republic of', |
| 316 | + 'iq' => 'Iraq', |
| 317 | + 'ie' => 'Ireland', |
| 318 | + 'il' => 'Israel', |
| 319 | + 'it' => 'Italy', |
| 320 | + 'jm' => 'Jamaica', |
| 321 | + 'jp' => 'Japan', |
| 322 | + 'jo' => 'Jordan', |
| 323 | + 'kz' => 'Kazakhstan', |
| 324 | + 'ke' => 'Kenya', |
| 325 | + 'ki' => 'Kiribati', |
| 326 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 327 | + 'kr' => 'Republic of Korea', |
| 328 | + 'kw' => 'Kuwait', |
| 329 | + 'kg' => 'Kyrgyzstan', |
| 330 | + 'la' => 'Lao People\'s Democratic Republic', |
| 331 | + 'lv' => 'Latvia', |
| 332 | + 'lb' => 'Lebanon', |
| 333 | + 'ls' => 'Lesotho', |
| 334 | + 'lr' => 'Liberia', |
| 335 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 336 | + 'li' => 'Liechtenstein', |
| 337 | + 'lt' => 'Lithuania', |
| 338 | + 'lu' => 'Luxembourg', |
| 339 | + 'mo' => 'Macao', |
| 340 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 341 | + 'mg' => 'Madagascar', |
| 342 | + 'mw' => 'Malawi', |
| 343 | + 'my' => 'Malaysia', |
| 344 | + 'mv' => 'Maldives', |
| 345 | + 'ml' => 'Mali', |
| 346 | + 'mt' => 'Malta', |
| 347 | + 'mh' => 'Marshall Islands', |
| 348 | + 'mq' => 'Martinique', |
| 349 | + 'mr' => 'Mauritania', |
| 350 | + 'mu' => 'Mauritius', |
| 351 | + 'yt' => 'Mayotte', |
| 352 | + 'mx' => 'Mexico', |
| 353 | + 'fm' => 'Micronesia, Federated States of', |
| 354 | + 'md' => 'Moldova, Republic of', |
| 355 | + 'mc' => 'Monaco SAR', |
| 356 | + 'mn' => 'Mongolia', |
| 357 | + 'me' => 'Montenegro', |
| 358 | + 'ms' => 'Montserrat', |
| 359 | + 'ma' => 'Morocco', |
| 360 | + 'mz' => 'Mozambique', |
| 361 | + 'na' => 'Namibia', |
| 362 | + 'nr' => 'Nauru', |
| 363 | + 'np' => 'Nepal', |
| 364 | + 'nl' => 'Netherlands', |
| 365 | + 'an' => 'Netherlands Antilles', |
| 366 | + 'nc' => 'New Caledonia', |
| 367 | + 'nz' => 'New Zealand', |
| 368 | + 'ni' => 'Nicaragua', |
| 369 | + 'ne' => 'Niger', |
| 370 | + 'ng' => 'Nigeria', |
| 371 | + 'nu' => 'Niue', |
| 372 | + 'nf' => 'Norfolk Island', |
| 373 | + 'mp' => 'Northern Mariana Islands', |
| 374 | + 'no' => 'Norway', |
| 375 | + 'om' => 'Oman', |
| 376 | + 'pk' => 'Pakistan', |
| 377 | + 'pw' => 'Palau', |
| 378 | + 'ps' => 'Palestinian Territory', |
| 379 | + 'pa' => 'Panama', |
| 380 | + 'pg' => 'Papua New Guinea', |
| 381 | + 'py' => 'Paraguay', |
| 382 | + 'pe' => 'Peru', |
| 383 | + 'ph' => 'Philippines', |
| 384 | + 'pn' => 'Pitcairn', |
| 385 | + 'pl' => 'Poland', |
| 386 | + 'pt' => 'Portugal', |
| 387 | + 'pr' => 'Puerto Rico', |
| 388 | + 'qa' => 'Qatar', |
| 389 | + 're' => 'Reunion', |
| 390 | + 'ro' => 'Romania', |
| 391 | + 'ru' => 'Russian Federation', |
| 392 | + 'rw' => 'Rwanda', |
| 393 | + 'sh' => 'Saint Helena', |
| 394 | + 'kn' => 'Saint Kitts and Nevis', |
| 395 | + 'lc' => 'Saint Lucia', |
| 396 | + 'pm' => 'Saint Pierre and Miquelon', |
| 397 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 398 | + 'ws' => 'Samoa', |
| 399 | + 'sm' => 'San Marino', |
| 400 | + 'st' => 'Sao Tome and Principe', |
| 401 | + 'sa' => 'Saudi Arabia', |
| 402 | + 'sn' => 'Senegal', |
| 403 | + 'rs' => 'Serbia', |
| 404 | + 'sc' => 'Seychelles', |
| 405 | + 'sl' => 'Sierra Leone', |
| 406 | + 'sg' => 'Singapore', |
| 407 | + 'sk' => 'Slovakia', |
| 408 | + 'si' => 'Slovenia', |
| 409 | + 'sb' => 'Solomon Islands', |
| 410 | + 'so' => 'Somalia', |
| 411 | + 'za' => 'South Africa', |
| 412 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 413 | + 'es' => 'Spain', |
| 414 | + 'lk' => 'Sri Lanka', |
| 415 | + 'sd' => 'Sudan', |
| 416 | + 'sr' => 'Suriname', |
| 417 | + 'sj' => 'Svalbard and Jan Mayen', |
| 418 | + 'sz' => 'Swaziland', |
| 419 | + 'se' => 'Sweden', |
| 420 | + 'ch' => 'Switzerland', |
| 421 | + 'sy' => 'Syrian Arab Republic', |
| 422 | + 'tj' => 'Tajikistan', |
| 423 | + 'tz' => 'Tanzania, United Republic of', |
| 424 | + 'th' => 'Thailand', |
| 425 | + 'tl' => 'Timor-leste', |
| 426 | + 'tg' => 'Togo', |
| 427 | + 'tk' => 'Tokelau', |
| 428 | + 'to' => 'Tonga', |
| 429 | + 'tt' => 'Trinidad and Tobago', |
| 430 | + 'tn' => 'Tunisia', |
| 431 | + 'tr' => 'Turkey', |
| 432 | + 'tm' => 'Turkmenistan', |
| 433 | + 'tc' => 'Turks and Caicos Islands', |
| 434 | + 'tv' => 'Tuvalu', |
| 435 | + 'ug' => 'Uganda', |
| 436 | + 'ua' => 'Ukraine', |
| 437 | + 'ae' => 'United Arab Emirates', |
| 438 | + 'gb' => 'United Kingdom', |
| 439 | + 'us' => 'United States', |
| 440 | + 'um' => 'United States Minor Outlying Islands', |
| 441 | + 'uy' => 'Uruguay', |
| 442 | + 'uz' => 'Uzbekistan', |
| 443 | + 'vu' => 'Vanuatu', |
| 444 | + 've' => 'Venezuela', |
| 445 | + 'vn' => 'Viet Nam', |
| 446 | + 'vg' => 'Virgin Islands, British', |
| 447 | + 'vi' => 'Virgin Islands, U.S.', |
| 448 | + 'wf' => 'Wallis and Futuna', |
| 449 | + 'eh' => 'Western Sahara', |
| 450 | + 'ye' => 'Yemen', |
| 451 | + 'zm' => 'Zambia', |
| 452 | + 'zw' => 'Zimbabwe' |
453 | 453 | ); |
Index: trunk/wikimania/wmreg/includes/SqlConnect-mysql.php |
— | — | @@ -63,7 +63,7 @@ |
64 | 64 | return mysql_fetch_row( $query_result ); |
65 | 65 | } |
66 | 66 | /* |
67 | | - Function : EscapeString |
| 67 | + Function : EscapeString |
68 | 68 | Description : Escape String to Prevent SQL injection |
69 | 69 | Arguments : None |
70 | 70 | Return values : true if success,false if failed |
— | — | @@ -93,7 +93,7 @@ |
94 | 94 | // if(!$this->handle) return false; |
95 | 95 | |
96 | 96 | /*MySQL Query */ |
97 | | - // $this->query('SHOW TABLE FROM `'. $this->database_name .'` LIKE\''. preg_replace('\_','\\\_',$this->EscapeString($table_name) .'\''); |
| 97 | + // $this->query('SHOW TABLE FROM `'. $this->database_name .'` LIKE\''. preg_replace('\_','\\\_',$this->EscapeString($table_name) .'\''); |
98 | 98 | // } |
99 | 99 | |
100 | 100 | |
— | — | @@ -103,7 +103,7 @@ |
104 | 104 | /* No Connect, No Action */ |
105 | 105 | if ( !$this->handle ) return false; |
106 | 106 | |
107 | | - /* Must be an array */ |
| 107 | + /* Must be an array */ |
108 | 108 | if ( !is_array( $data_array ) ) return false; |
109 | 109 | |
110 | 110 | /* No special table name */ |
— | — | @@ -129,7 +129,7 @@ |
130 | 130 | if ( !$this->handle ) |
131 | 131 | { return false; } |
132 | 132 | |
133 | | - /* Must be an array */ |
| 133 | + /* Must be an array */ |
134 | 134 | if ( !is_array( $data_array ) ) |
135 | 135 | { return false; } |
136 | 136 | |
— | — | @@ -261,8 +261,8 @@ |
262 | 262 | $order_parameters = ' ORDER BY `' . implode( '`, `', $order_array ) . '`'; |
263 | 263 | if ( $other_array['asc'] ) |
264 | 264 | { $order_parameters .= ' ASC'; } |
265 | | - else |
266 | | - { $order_parameters .= 'DESC'; } |
| 265 | + else |
| 266 | + { $order_parameters .= 'DESC'; } |
267 | 267 | } |
268 | 268 | |
269 | 269 | /* page set */ |
Index: trunk/wikimania/wmreg/includes/notinuse/language_fa.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => 'اطلاعات شخصی', |
12 | 12 | 'title1' => |
13 | | -' <p><div align="right"><strong>اطلاعات شخصی</strong></div></div></p> |
14 | | - <p><div align="right">لطفاً اطلاعات شخصی خود را به درستی در فرم وارد کنید.</div></div></p> |
| 13 | +' <p><div align="right"><strong>اطلاعات شخصی</strong></div></div></p> |
| 14 | + <p><div align="right">لطفاً اطلاعات شخصی خود را به درستی در فرم وارد کنید.</div></div></p> |
15 | 15 | ', |
16 | 16 | 'egy' => 'آیا شما شهروند جمهوری عربی مصر هستید؟', |
17 | 17 | 'egy1' => 'بله، هستم. (لطفاً شماره شناسایی ملی و نام خودتان را در قسمتهای زیر وارد کنید)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><div align="right"><strong>تواناییهای زبانی</strong></div></div></p>', |
| 37 | +' <p><div align="right"><strong>تواناییهای زبانی</strong></div></div></p>', |
38 | 38 | 'langn' => 'زبان مادری', |
39 | 39 | 'lang' => 'سطح مهارت', |
40 | 40 | 'select_lang' => 'زبان را انتخاب کنید', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => 'سطح مهارت در زبان ۳', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><div align="right"><strong>پروژه و نشانی پست الکترونیکی در ویکیمدیا</strong> |
58 | | - <br> |
59 | | - پست الکترونیکی شما تنها برای ثبت نام و تماسهای ضروری دربارهٔ ویکیمانیا ۲۰۰۸ استفاده خواهد شد. |
60 | | - </div></p> |
| 57 | +' <p><div align="right"><strong>پروژه و نشانی پست الکترونیکی در ویکیمدیا</strong> |
| 58 | + <br> |
| 59 | + پست الکترونیکی شما تنها برای ثبت نام و تماسهای ضروری دربارهٔ ویکیمانیا ۲۰۰۸ استفاده خواهد شد. |
| 60 | + </div></p> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'حساب کاربری در پروژه دلخواه ویکیمدیا', |
63 | 63 | 'email' => 'پست الکترونیکی شما', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => 'شرکت کردن', |
67 | 67 | 'title4' => |
68 | | -' <p><div align="right"><strong>شرکت کردن، اطلاعات نشان فردی و سایر موارد</strong></div></p> |
69 | | - <p><div align="right">برای مرتب کردن بهتر کارها در زمان اسکان، نشستها و خدمات مرتبط، لطفاً نظر خود را در مورد موارد زیر به ما بگویید.</div></p> |
| 68 | +' <p><div align="right"><strong>شرکت کردن، اطلاعات نشان فردی و سایر موارد</strong></div></p> |
| 69 | + <p><div align="right">برای مرتب کردن بهتر کارها در زمان اسکان، نشستها و خدمات مرتبط، لطفاً نظر خود را در مورد موارد زیر به ما بگویید.</div></p> |
70 | 70 | ', |
71 | 71 | 'join_date' => 'تاریخ شرکت کردن', |
72 | 72 | 'join1' => '۱۷ ژوئیه', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => 'لطفاً مشخیص کنید که تیم سازمانی چگونه میتواند به شما در اخذ روادید کمک کند. (به زبان <strong>عربی</strong> یا <strong>انگلیسی</strong> بنویسید)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><div align="right"><strong>اسکان</strong></div></p> |
104 | | - <p><div align="right">ما دو گزینه برای اسکان پیش روی شما گذاشتهایم. شما میتوانید در یک هتل اقامت کنید، یا در خوابگاههای کالج سنت-مارک باشید. |
| 103 | +' <p><div align="right"><strong>اسکان</strong></div></p> |
| 104 | + <p><div align="right">ما دو گزینه برای اسکان پیش روی شما گذاشتهایم. شما میتوانید در یک هتل اقامت کنید، یا در خوابگاههای کالج سنت-مارک باشید. |
105 | 105 | لطفاً جزئیات بیشتر را در <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>وبگاه رسمی ویکیمانیا</a> ببینید تا پیش از ثبت نام از مکان دقیق و خصوصیات هر یک از دو گزینه آگاه شوید.</div></p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => 'هتل انتخابی', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => 'فرقی نمیکند', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><div align="right"><strong>پرداخت</strong></div></p> |
125 | | - <p><div align="right">در <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">۱۰۳ منطقه / کشور</a> (شامل مصر نمیشود) شما میتوانید از حساب PayPal خود پرداخت را انجام دهید یا کارت اعتباری خود را از طریق PayPal استفاده کنید، یا میتوانید از Remittance و پرداخت مستقیم به حساب بانکی متعلق به تیم سازمانی ساکن در اسکندریه پرداخت را انجام دهید. توجه: اگر اهل مصر هستید نمیتوانید از روش PayPal استفاده کنید</div></p> |
| 124 | +' <p><div align="right"><strong>پرداخت</strong></div></p> |
| 125 | + <p><div align="right">در <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">۱۰۳ منطقه / کشور</a> (شامل مصر نمیشود) شما میتوانید از حساب PayPal خود پرداخت را انجام دهید یا کارت اعتباری خود را از طریق PayPal استفاده کنید، یا میتوانید از Remittance و پرداخت مستقیم به حساب بانکی متعلق به تیم سازمانی ساکن در اسکندریه پرداخت را انجام دهید. توجه: اگر اهل مصر هستید نمیتوانید از روش PayPal استفاده کنید</div></p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => 'روش پرداخت', |
— | — | @@ -209,245 +209,245 @@ |
210 | 210 | ); |
211 | 211 | |
212 | 212 | $lang_countries = array( |
213 | | - 'af' => 'Afghanistan', |
214 | | - 'ax' => 'Aland Islands', |
215 | | - 'al' => 'Albania', |
216 | | - 'dz' => 'Algeria', |
217 | | - 'as' => 'American Samoa', |
218 | | - 'ad' => 'Andorra', |
219 | | - 'ao' => 'Angola', |
220 | | - 'ai' => 'Anguilla', |
221 | | - 'aq' => 'Antarctica', |
222 | | - 'ag' => 'Antigua and Barbuda', |
223 | | - 'ar' => 'Argentina', |
224 | | - 'am' => 'Armenia', |
225 | | - 'aw' => 'Aruba', |
226 | | - 'au' => 'Australia', |
227 | | - 'at' => 'Austria', |
228 | | - 'az' => 'Azerbaijan', |
229 | | - 'bs' => 'Bahamas', |
230 | | - 'bh' => 'Bahrain', |
231 | | - 'bd' => 'Bangladesh', |
232 | | - 'bb' => 'Barbados', |
233 | | - 'by' => 'Belarus', |
234 | | - 'be' => 'Belgium', |
235 | | - 'bz' => 'Belize', |
236 | | - 'bj' => 'Benin', |
237 | | - 'bm' => 'Bermuda', |
238 | | - 'bt' => 'Bhutan', |
239 | | - 'bo' => 'Bolivia', |
240 | | - 'ba' => 'Bosnia and Herzegovina', |
241 | | - 'bw' => 'Botswana', |
242 | | - 'bv' => 'Bouvet Island', |
243 | | - 'br' => 'Brazil', |
244 | | - 'io' => 'British Indian Ocean Territory', |
245 | | - 'bn' => 'Brunei Darussalam', |
246 | | - 'bg' => 'Bulgaria', |
247 | | - 'bf' => 'Burkina Faso', |
248 | | - 'mm' => 'Burma (Myanmar)', |
249 | | - 'bi' => 'Burundi', |
250 | | - 'kh' => 'Cambodia', |
251 | | - 'cm' => 'Cameroon', |
252 | | - 'ca' => 'Canada', |
253 | | - 'cv' => 'Cape Verde', |
254 | | - 'ky' => 'Cayman Islands', |
255 | | - 'cf' => 'Central African Republic', |
256 | | - 'td' => 'Chad', |
257 | | - 'cl' => 'Chile', |
258 | | - 'hk' => 'Hong Kong SAR', |
259 | | - 'cn' => 'People\'s Republic of China', |
260 | | - 'tw' => 'Republic of China (Taiwan)', |
261 | | - 'cx' => 'Christmas Island', |
262 | | - 'cc' => 'Cocos (keeling) Islands', |
263 | | - 'co' => 'Colombia', |
264 | | - 'km' => 'Comoros', |
265 | | - 'cg' => 'Congo', |
266 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
267 | | - 'ck' => 'Cook Islands', |
268 | | - 'cr' => 'Costa Rica', |
269 | | - 'ci' => 'Cote D\'ivoire', |
270 | | - 'hr' => 'Croatia', |
271 | | - 'cu' => 'Cuba', |
272 | | - 'cy' => 'Cyprus', |
273 | | - 'cz' => 'Czech Republic', |
274 | | - 'dk' => 'Denmark', |
275 | | - 'dj' => 'Djibouti', |
276 | | - 'dm' => 'Dominica', |
277 | | - 'do' => 'Dominican Republic', |
278 | | - 'ec' => 'Ecuador', |
279 | | - 'eg' => 'Egypt', |
280 | | - 'sv' => 'El Salvador', |
281 | | - 'gq' => 'Equatorial Guinea', |
282 | | - 'er' => 'Eritrea', |
283 | | - 'ee' => 'Estonia', |
284 | | - 'et' => 'Ethiopia', |
285 | | - 'fk' => 'Falkland Islands (malvinas)', |
286 | | - 'fo' => 'Faroe Islands', |
287 | | - 'fj' => 'Fiji', |
288 | | - 'fi' => 'Finland', |
289 | | - 'fr' => 'France', |
290 | | - 'gf' => 'French Guiana', |
291 | | - 'pf' => 'French Polynesia', |
292 | | - 'tf' => 'French Southern Territories', |
293 | | - 'ga' => 'Gabon', |
294 | | - 'gm' => 'Gambia', |
295 | | - 'ge' => 'Georgia', |
296 | | - 'de' => 'Germany', |
297 | | - 'gh' => 'Ghana', |
298 | | - 'gi' => 'Gibraltar', |
299 | | - 'gr' => 'Greece', |
300 | | - 'gl' => 'Greenland', |
301 | | - 'gd' => 'Grenada', |
302 | | - 'gp' => 'Guadeloupe', |
303 | | - 'gu' => 'Guam', |
304 | | - 'gt' => 'Guatemala', |
305 | | - 'gn' => 'Guinea', |
306 | | - 'gw' => 'Guinea-Bissau', |
307 | | - 'gy' => 'Guyana', |
308 | | - 'ht' => 'Haiti', |
309 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
310 | | - 'va' => 'Holy See (Vatican City)', |
311 | | - 'hn' => 'Honduras', |
312 | | - 'hu' => 'Hungary', |
313 | | - 'is' => 'Iceland', |
314 | | - 'in' => 'India', |
315 | | - 'id' => 'Indonesia', |
316 | | - 'ir' => 'Iran, Islamic Republic of', |
317 | | - 'iq' => 'Iraq', |
318 | | - 'ie' => 'Ireland', |
319 | | - 'il' => 'Israel', |
320 | | - 'it' => 'Italy', |
321 | | - 'jm' => 'Jamaica', |
322 | | - 'jp' => 'Japan', |
323 | | - 'jo' => 'Jordan', |
324 | | - 'kz' => 'Kazakhstan', |
325 | | - 'ke' => 'Kenya', |
326 | | - 'ki' => 'Kiribati', |
327 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
328 | | - 'kr' => 'Republic of Korea', |
329 | | - 'kw' => 'Kuwait', |
330 | | - 'kg' => 'Kyrgyzstan', |
331 | | - 'la' => 'Lao People\'s Democratic Republic', |
332 | | - 'lv' => 'Latvia', |
333 | | - 'lb' => 'Lebanon', |
334 | | - 'ls' => 'Lesotho', |
335 | | - 'lr' => 'Liberia', |
336 | | - 'ly' => 'Libyan Arab Jamahiriya', |
337 | | - 'li' => 'Liechtenstein', |
338 | | - 'lt' => 'Lithuania', |
339 | | - 'lu' => 'Luxembourg', |
340 | | - 'mo' => 'Macao', |
341 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
342 | | - 'mg' => 'Madagascar', |
343 | | - 'mw' => 'Malawi', |
344 | | - 'my' => 'Malaysia', |
345 | | - 'mv' => 'Maldives', |
346 | | - 'ml' => 'Mali', |
347 | | - 'mt' => 'Malta', |
348 | | - 'mh' => 'Marshall Islands', |
349 | | - 'mq' => 'Martinique', |
350 | | - 'mr' => 'Mauritania', |
351 | | - 'mu' => 'Mauritius', |
352 | | - 'yt' => 'Mayotte', |
353 | | - 'mx' => 'Mexico', |
354 | | - 'fm' => 'Micronesia, Federated States of', |
355 | | - 'md' => 'Moldova, Republic of', |
356 | | - 'mc' => 'Monaco SAR', |
357 | | - 'mn' => 'Mongolia', |
| 213 | + 'af' => 'Afghanistan', |
| 214 | + 'ax' => 'Aland Islands', |
| 215 | + 'al' => 'Albania', |
| 216 | + 'dz' => 'Algeria', |
| 217 | + 'as' => 'American Samoa', |
| 218 | + 'ad' => 'Andorra', |
| 219 | + 'ao' => 'Angola', |
| 220 | + 'ai' => 'Anguilla', |
| 221 | + 'aq' => 'Antarctica', |
| 222 | + 'ag' => 'Antigua and Barbuda', |
| 223 | + 'ar' => 'Argentina', |
| 224 | + 'am' => 'Armenia', |
| 225 | + 'aw' => 'Aruba', |
| 226 | + 'au' => 'Australia', |
| 227 | + 'at' => 'Austria', |
| 228 | + 'az' => 'Azerbaijan', |
| 229 | + 'bs' => 'Bahamas', |
| 230 | + 'bh' => 'Bahrain', |
| 231 | + 'bd' => 'Bangladesh', |
| 232 | + 'bb' => 'Barbados', |
| 233 | + 'by' => 'Belarus', |
| 234 | + 'be' => 'Belgium', |
| 235 | + 'bz' => 'Belize', |
| 236 | + 'bj' => 'Benin', |
| 237 | + 'bm' => 'Bermuda', |
| 238 | + 'bt' => 'Bhutan', |
| 239 | + 'bo' => 'Bolivia', |
| 240 | + 'ba' => 'Bosnia and Herzegovina', |
| 241 | + 'bw' => 'Botswana', |
| 242 | + 'bv' => 'Bouvet Island', |
| 243 | + 'br' => 'Brazil', |
| 244 | + 'io' => 'British Indian Ocean Territory', |
| 245 | + 'bn' => 'Brunei Darussalam', |
| 246 | + 'bg' => 'Bulgaria', |
| 247 | + 'bf' => 'Burkina Faso', |
| 248 | + 'mm' => 'Burma (Myanmar)', |
| 249 | + 'bi' => 'Burundi', |
| 250 | + 'kh' => 'Cambodia', |
| 251 | + 'cm' => 'Cameroon', |
| 252 | + 'ca' => 'Canada', |
| 253 | + 'cv' => 'Cape Verde', |
| 254 | + 'ky' => 'Cayman Islands', |
| 255 | + 'cf' => 'Central African Republic', |
| 256 | + 'td' => 'Chad', |
| 257 | + 'cl' => 'Chile', |
| 258 | + 'hk' => 'Hong Kong SAR', |
| 259 | + 'cn' => 'People\'s Republic of China', |
| 260 | + 'tw' => 'Republic of China (Taiwan)', |
| 261 | + 'cx' => 'Christmas Island', |
| 262 | + 'cc' => 'Cocos (keeling) Islands', |
| 263 | + 'co' => 'Colombia', |
| 264 | + 'km' => 'Comoros', |
| 265 | + 'cg' => 'Congo', |
| 266 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 267 | + 'ck' => 'Cook Islands', |
| 268 | + 'cr' => 'Costa Rica', |
| 269 | + 'ci' => 'Cote D\'ivoire', |
| 270 | + 'hr' => 'Croatia', |
| 271 | + 'cu' => 'Cuba', |
| 272 | + 'cy' => 'Cyprus', |
| 273 | + 'cz' => 'Czech Republic', |
| 274 | + 'dk' => 'Denmark', |
| 275 | + 'dj' => 'Djibouti', |
| 276 | + 'dm' => 'Dominica', |
| 277 | + 'do' => 'Dominican Republic', |
| 278 | + 'ec' => 'Ecuador', |
| 279 | + 'eg' => 'Egypt', |
| 280 | + 'sv' => 'El Salvador', |
| 281 | + 'gq' => 'Equatorial Guinea', |
| 282 | + 'er' => 'Eritrea', |
| 283 | + 'ee' => 'Estonia', |
| 284 | + 'et' => 'Ethiopia', |
| 285 | + 'fk' => 'Falkland Islands (malvinas)', |
| 286 | + 'fo' => 'Faroe Islands', |
| 287 | + 'fj' => 'Fiji', |
| 288 | + 'fi' => 'Finland', |
| 289 | + 'fr' => 'France', |
| 290 | + 'gf' => 'French Guiana', |
| 291 | + 'pf' => 'French Polynesia', |
| 292 | + 'tf' => 'French Southern Territories', |
| 293 | + 'ga' => 'Gabon', |
| 294 | + 'gm' => 'Gambia', |
| 295 | + 'ge' => 'Georgia', |
| 296 | + 'de' => 'Germany', |
| 297 | + 'gh' => 'Ghana', |
| 298 | + 'gi' => 'Gibraltar', |
| 299 | + 'gr' => 'Greece', |
| 300 | + 'gl' => 'Greenland', |
| 301 | + 'gd' => 'Grenada', |
| 302 | + 'gp' => 'Guadeloupe', |
| 303 | + 'gu' => 'Guam', |
| 304 | + 'gt' => 'Guatemala', |
| 305 | + 'gn' => 'Guinea', |
| 306 | + 'gw' => 'Guinea-Bissau', |
| 307 | + 'gy' => 'Guyana', |
| 308 | + 'ht' => 'Haiti', |
| 309 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 310 | + 'va' => 'Holy See (Vatican City)', |
| 311 | + 'hn' => 'Honduras', |
| 312 | + 'hu' => 'Hungary', |
| 313 | + 'is' => 'Iceland', |
| 314 | + 'in' => 'India', |
| 315 | + 'id' => 'Indonesia', |
| 316 | + 'ir' => 'Iran, Islamic Republic of', |
| 317 | + 'iq' => 'Iraq', |
| 318 | + 'ie' => 'Ireland', |
| 319 | + 'il' => 'Israel', |
| 320 | + 'it' => 'Italy', |
| 321 | + 'jm' => 'Jamaica', |
| 322 | + 'jp' => 'Japan', |
| 323 | + 'jo' => 'Jordan', |
| 324 | + 'kz' => 'Kazakhstan', |
| 325 | + 'ke' => 'Kenya', |
| 326 | + 'ki' => 'Kiribati', |
| 327 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 328 | + 'kr' => 'Republic of Korea', |
| 329 | + 'kw' => 'Kuwait', |
| 330 | + 'kg' => 'Kyrgyzstan', |
| 331 | + 'la' => 'Lao People\'s Democratic Republic', |
| 332 | + 'lv' => 'Latvia', |
| 333 | + 'lb' => 'Lebanon', |
| 334 | + 'ls' => 'Lesotho', |
| 335 | + 'lr' => 'Liberia', |
| 336 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 337 | + 'li' => 'Liechtenstein', |
| 338 | + 'lt' => 'Lithuania', |
| 339 | + 'lu' => 'Luxembourg', |
| 340 | + 'mo' => 'Macao', |
| 341 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 342 | + 'mg' => 'Madagascar', |
| 343 | + 'mw' => 'Malawi', |
| 344 | + 'my' => 'Malaysia', |
| 345 | + 'mv' => 'Maldives', |
| 346 | + 'ml' => 'Mali', |
| 347 | + 'mt' => 'Malta', |
| 348 | + 'mh' => 'Marshall Islands', |
| 349 | + 'mq' => 'Martinique', |
| 350 | + 'mr' => 'Mauritania', |
| 351 | + 'mu' => 'Mauritius', |
| 352 | + 'yt' => 'Mayotte', |
| 353 | + 'mx' => 'Mexico', |
| 354 | + 'fm' => 'Micronesia, Federated States of', |
| 355 | + 'md' => 'Moldova, Republic of', |
| 356 | + 'mc' => 'Monaco SAR', |
| 357 | + 'mn' => 'Mongolia', |
358 | 358 | 'me' => 'Montenegro', |
359 | | - 'ms' => 'Montserrat', |
360 | | - 'ma' => 'Morocco', |
361 | | - 'mz' => 'Mozambique', |
362 | | - 'na' => 'Namibia', |
363 | | - 'nr' => 'Nauru', |
364 | | - 'np' => 'Nepal', |
365 | | - 'nl' => 'Netherlands', |
366 | | - 'an' => 'Netherlands Antilles', |
367 | | - 'nc' => 'New Caledonia', |
368 | | - 'nz' => 'New Zealand', |
369 | | - 'ni' => 'Nicaragua', |
370 | | - 'ne' => 'Niger', |
371 | | - 'ng' => 'Nigeria', |
372 | | - 'nu' => 'Niue', |
373 | | - 'nf' => 'Norfolk Island', |
374 | | - 'mp' => 'Northern Mariana Islands', |
375 | | - 'no' => 'Norway', |
376 | | - 'om' => 'Oman', |
377 | | - 'pk' => 'Pakistan', |
378 | | - 'pw' => 'Palau', |
379 | | - 'ps' => 'Palestinian Territory', |
380 | | - 'pa' => 'Panama', |
381 | | - 'pg' => 'Papua New Guinea', |
382 | | - 'py' => 'Paraguay', |
383 | | - 'pe' => 'Peru', |
384 | | - 'ph' => 'Philippines', |
385 | | - 'pn' => 'Pitcairn', |
386 | | - 'pl' => 'Poland', |
387 | | - 'pt' => 'Portugal', |
388 | | - 'pr' => 'Puerto Rico', |
389 | | - 'qa' => 'Qatar', |
390 | | - 're' => 'Reunion', |
391 | | - 'ro' => 'Romania', |
392 | | - 'ru' => 'Russian Federation', |
393 | | - 'rw' => 'Rwanda', |
394 | | - 'sh' => 'Saint Helena', |
395 | | - 'kn' => 'Saint Kitts and Nevis', |
396 | | - 'lc' => 'Saint Lucia', |
397 | | - 'pm' => 'Saint Pierre and Miquelon', |
398 | | - 'vc' => 'Saint Vincent and the Grenadines', |
399 | | - 'ws' => 'Samoa', |
400 | | - 'sm' => 'San Marino', |
401 | | - 'st' => 'Sao Tome and Principe', |
402 | | - 'sa' => 'Saudi Arabia', |
403 | | - 'sn' => 'Senegal', |
404 | | - 'rs' => 'Serbia', |
405 | | - 'sc' => 'Seychelles', |
406 | | - 'sl' => 'Sierra Leone', |
407 | | - 'sg' => 'Singapore', |
408 | | - 'sk' => 'Slovakia', |
409 | | - 'si' => 'Slovenia', |
410 | | - 'sb' => 'Solomon Islands', |
411 | | - 'so' => 'Somalia', |
412 | | - 'za' => 'South Africa', |
413 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
414 | | - 'es' => 'Spain', |
415 | | - 'lk' => 'Sri Lanka', |
416 | | - 'sd' => 'Sudan', |
417 | | - 'sr' => 'Suriname', |
418 | | - 'sj' => 'Svalbard and Jan Mayen', |
419 | | - 'sz' => 'Swaziland', |
420 | | - 'se' => 'Sweden', |
421 | | - 'ch' => 'Switzerland', |
422 | | - 'sy' => 'Syrian Arab Republic', |
423 | | - 'tj' => 'Tajikistan', |
424 | | - 'tz' => 'Tanzania, United Republic of', |
425 | | - 'th' => 'Thailand', |
426 | | - 'tl' => 'Timor-leste', |
427 | | - 'tg' => 'Togo', |
428 | | - 'tk' => 'Tokelau', |
429 | | - 'to' => 'Tonga', |
430 | | - 'tt' => 'Trinidad and Tobago', |
431 | | - 'tn' => 'Tunisia', |
432 | | - 'tr' => 'Turkey', |
433 | | - 'tm' => 'Turkmenistan', |
434 | | - 'tc' => 'Turks and Caicos Islands', |
435 | | - 'tv' => 'Tuvalu', |
436 | | - 'ug' => 'Uganda', |
437 | | - 'ua' => 'Ukraine', |
438 | | - 'ae' => 'United Arab Emirates', |
439 | | - 'gb' => 'United Kingdom', |
440 | | - 'us' => 'United States', |
441 | | - 'um' => 'United States Minor Outlying Islands', |
442 | | - 'uy' => 'Uruguay', |
443 | | - 'uz' => 'Uzbekistan', |
444 | | - 'vu' => 'Vanuatu', |
445 | | - 've' => 'Venezuela', |
446 | | - 'vn' => 'Viet Nam', |
447 | | - 'vg' => 'Virgin Islands, British', |
448 | | - 'vi' => 'Virgin Islands, U.S.', |
449 | | - 'wf' => 'Wallis and Futuna', |
450 | | - 'eh' => 'Western Sahara', |
451 | | - 'ye' => 'Yemen', |
452 | | - 'zm' => 'Zambia', |
453 | | - 'zw' => 'Zimbabwe' |
| 359 | + 'ms' => 'Montserrat', |
| 360 | + 'ma' => 'Morocco', |
| 361 | + 'mz' => 'Mozambique', |
| 362 | + 'na' => 'Namibia', |
| 363 | + 'nr' => 'Nauru', |
| 364 | + 'np' => 'Nepal', |
| 365 | + 'nl' => 'Netherlands', |
| 366 | + 'an' => 'Netherlands Antilles', |
| 367 | + 'nc' => 'New Caledonia', |
| 368 | + 'nz' => 'New Zealand', |
| 369 | + 'ni' => 'Nicaragua', |
| 370 | + 'ne' => 'Niger', |
| 371 | + 'ng' => 'Nigeria', |
| 372 | + 'nu' => 'Niue', |
| 373 | + 'nf' => 'Norfolk Island', |
| 374 | + 'mp' => 'Northern Mariana Islands', |
| 375 | + 'no' => 'Norway', |
| 376 | + 'om' => 'Oman', |
| 377 | + 'pk' => 'Pakistan', |
| 378 | + 'pw' => 'Palau', |
| 379 | + 'ps' => 'Palestinian Territory', |
| 380 | + 'pa' => 'Panama', |
| 381 | + 'pg' => 'Papua New Guinea', |
| 382 | + 'py' => 'Paraguay', |
| 383 | + 'pe' => 'Peru', |
| 384 | + 'ph' => 'Philippines', |
| 385 | + 'pn' => 'Pitcairn', |
| 386 | + 'pl' => 'Poland', |
| 387 | + 'pt' => 'Portugal', |
| 388 | + 'pr' => 'Puerto Rico', |
| 389 | + 'qa' => 'Qatar', |
| 390 | + 're' => 'Reunion', |
| 391 | + 'ro' => 'Romania', |
| 392 | + 'ru' => 'Russian Federation', |
| 393 | + 'rw' => 'Rwanda', |
| 394 | + 'sh' => 'Saint Helena', |
| 395 | + 'kn' => 'Saint Kitts and Nevis', |
| 396 | + 'lc' => 'Saint Lucia', |
| 397 | + 'pm' => 'Saint Pierre and Miquelon', |
| 398 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 399 | + 'ws' => 'Samoa', |
| 400 | + 'sm' => 'San Marino', |
| 401 | + 'st' => 'Sao Tome and Principe', |
| 402 | + 'sa' => 'Saudi Arabia', |
| 403 | + 'sn' => 'Senegal', |
| 404 | + 'rs' => 'Serbia', |
| 405 | + 'sc' => 'Seychelles', |
| 406 | + 'sl' => 'Sierra Leone', |
| 407 | + 'sg' => 'Singapore', |
| 408 | + 'sk' => 'Slovakia', |
| 409 | + 'si' => 'Slovenia', |
| 410 | + 'sb' => 'Solomon Islands', |
| 411 | + 'so' => 'Somalia', |
| 412 | + 'za' => 'South Africa', |
| 413 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 414 | + 'es' => 'Spain', |
| 415 | + 'lk' => 'Sri Lanka', |
| 416 | + 'sd' => 'Sudan', |
| 417 | + 'sr' => 'Suriname', |
| 418 | + 'sj' => 'Svalbard and Jan Mayen', |
| 419 | + 'sz' => 'Swaziland', |
| 420 | + 'se' => 'Sweden', |
| 421 | + 'ch' => 'Switzerland', |
| 422 | + 'sy' => 'Syrian Arab Republic', |
| 423 | + 'tj' => 'Tajikistan', |
| 424 | + 'tz' => 'Tanzania, United Republic of', |
| 425 | + 'th' => 'Thailand', |
| 426 | + 'tl' => 'Timor-leste', |
| 427 | + 'tg' => 'Togo', |
| 428 | + 'tk' => 'Tokelau', |
| 429 | + 'to' => 'Tonga', |
| 430 | + 'tt' => 'Trinidad and Tobago', |
| 431 | + 'tn' => 'Tunisia', |
| 432 | + 'tr' => 'Turkey', |
| 433 | + 'tm' => 'Turkmenistan', |
| 434 | + 'tc' => 'Turks and Caicos Islands', |
| 435 | + 'tv' => 'Tuvalu', |
| 436 | + 'ug' => 'Uganda', |
| 437 | + 'ua' => 'Ukraine', |
| 438 | + 'ae' => 'United Arab Emirates', |
| 439 | + 'gb' => 'United Kingdom', |
| 440 | + 'us' => 'United States', |
| 441 | + 'um' => 'United States Minor Outlying Islands', |
| 442 | + 'uy' => 'Uruguay', |
| 443 | + 'uz' => 'Uzbekistan', |
| 444 | + 'vu' => 'Vanuatu', |
| 445 | + 've' => 'Venezuela', |
| 446 | + 'vn' => 'Viet Nam', |
| 447 | + 'vg' => 'Virgin Islands, British', |
| 448 | + 'vi' => 'Virgin Islands, U.S.', |
| 449 | + 'wf' => 'Wallis and Futuna', |
| 450 | + 'eh' => 'Western Sahara', |
| 451 | + 'ye' => 'Yemen', |
| 452 | + 'zm' => 'Zambia', |
| 453 | + 'zw' => 'Zimbabwe' |
454 | 454 | ); |
Index: trunk/wikimania/wmreg/includes/notinuse/language_es.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => 'Información personal', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>Datos de identificación personal</strong></p> |
14 | | - <p>Por favor completa correctamente tu información personal.</p> |
| 13 | +' <p><strong>Datos de identificación personal</strong></p> |
| 14 | + <p>Por favor completa correctamente tu información personal.</p> |
15 | 15 | ', |
16 | 16 | 'egy' => '¿Eres ciudadano de la República Árabe de Egipto?', |
17 | 17 | 'egy1' => 'Sí. (Por favor escribe tu número de identificación nacional y tu nombre en los siguientes campos)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>Habilidades lingüísticas</strong></p>', |
| 37 | +' <p><strong>Habilidades lingüísticas</strong></p>', |
38 | 38 | 'langn' => 'Idioma nativo', |
39 | 39 | 'lang' => 'Nivel', |
40 | 40 | 'select_lang' => 'Selecciona un idioma', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => 'Nivel del idioma 3', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>Proyecto de Wikimedia y dirección/es de correo electrónico</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>Tu correo electrónico sólo será utilizado para la inscripción y para notificaciones urgentes sobre Wikimania 2008.</li> |
60 | | - </ul> |
| 57 | +' <p><strong>Proyecto de Wikimedia y dirección/es de correo electrónico</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>Tu correo electrónico sólo será utilizado para la inscripción y para notificaciones urgentes sobre Wikimania 2008.</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'Nombre de la cuenta de tu proyecto Wikimedia preferido', |
63 | 63 | 'email' => 'Tu correo electrónico', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => 'Participación', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>Participación, información para tu credencial y otros datos</strong></p> |
69 | | - <p>Para facilitar arreglos en el alojamiento, las sesiones de las distintas áreas y servicios relacionados, por favor indícanos tus opciones en los siguientes campos.</p> |
| 68 | +' <p><strong>Participación, información para tu credencial y otros datos</strong></p> |
| 69 | + <p>Para facilitar arreglos en el alojamiento, las sesiones de las distintas áreas y servicios relacionados, por favor indícanos tus opciones en los siguientes campos.</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => 'Fecha de participación', |
72 | 72 | 'join1' => '17 de julio', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => ' Por favor indícanos cómo puede ayudarte el equipo organizador a obtener la visa. (en <strong>Árabe</strong> o <strong>Inglés</strong>)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>Alojamiento</strong></p> |
104 | | - <p>Tenemos 2 opciones disponibles para el alojamiento. Puedes elegir entre 1 de 2 hoteles en el centro de la ciudad, en habitación doble, o puedes quedarte en los dormitorios del Saint-Marc College. |
| 103 | +' <p><strong>Alojamiento</strong></p> |
| 104 | + <p>Tenemos 2 opciones disponibles para el alojamiento. Puedes elegir entre 1 de 2 hoteles en el centro de la ciudad, en habitación doble, o puedes quedarte en los dormitorios del Saint-Marc College. |
105 | 105 | Por favor mira los detalles en el <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>sitio oficial de Wikimania</a> para conocer la localización y especificaciones exactas de cada opción antes de registrarte.</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => 'Hotel preferido.', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => 'Cualquiera', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>Pago</strong></p> |
125 | | - <p>Puedes utilizar tu cuenta Paypal o pagar utilizando tu tarjeta de crédito a través de PayPal en <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 países / regiones</a> (No incluye Egipto) o por transferencia y pago directo a la cuenta bancaria del equipo organizador en Alejandría. Nota: la opción de PayPal será descartada si eres egipcio</p> |
| 124 | +' <p><strong>Pago</strong></p> |
| 125 | + <p>Puedes utilizar tu cuenta Paypal o pagar utilizando tu tarjeta de crédito a través de PayPal en <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 países / regiones</a> (No incluye Egipto) o por transferencia y pago directo a la cuenta bancaria del equipo organizador en Alejandría. Nota: la opción de PayPal será descartada si eres egipcio</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => 'Tipo de Pago', |
— | — | @@ -209,245 +209,245 @@ |
210 | 210 | ); |
211 | 211 | |
212 | 212 | $lang_countries = array( |
213 | | - 'af' => 'Afghanistan', |
214 | | - 'ax' => 'Aland Islands', |
215 | | - 'al' => 'Albania', |
216 | | - 'dz' => 'Algeria', |
217 | | - 'as' => 'American Samoa', |
218 | | - 'ad' => 'Andorra', |
219 | | - 'ao' => 'Angola', |
220 | | - 'ai' => 'Anguilla', |
221 | | - 'aq' => 'Antarctica', |
222 | | - 'ag' => 'Antigua and Barbuda', |
223 | | - 'ar' => 'Argentina', |
224 | | - 'am' => 'Armenia', |
225 | | - 'aw' => 'Aruba', |
226 | | - 'au' => 'Australia', |
227 | | - 'at' => 'Austria', |
228 | | - 'az' => 'Azerbaijan', |
229 | | - 'bs' => 'Bahamas', |
230 | | - 'bh' => 'Bahrain', |
231 | | - 'bd' => 'Bangladesh', |
232 | | - 'bb' => 'Barbados', |
233 | | - 'by' => 'Belarus', |
234 | | - 'be' => 'Belgium', |
235 | | - 'bz' => 'Belize', |
236 | | - 'bj' => 'Benin', |
237 | | - 'bm' => 'Bermuda', |
238 | | - 'bt' => 'Bhutan', |
239 | | - 'bo' => 'Bolivia', |
240 | | - 'ba' => 'Bosnia and Herzegovina', |
241 | | - 'bw' => 'Botswana', |
242 | | - 'bv' => 'Bouvet Island', |
243 | | - 'br' => 'Brazil', |
244 | | - 'io' => 'British Indian Ocean Territory', |
245 | | - 'bn' => 'Brunei Darussalam', |
246 | | - 'bg' => 'Bulgaria', |
247 | | - 'bf' => 'Burkina Faso', |
248 | | - 'mm' => 'Burma (Myanmar)', |
249 | | - 'bi' => 'Burundi', |
250 | | - 'kh' => 'Cambodia', |
251 | | - 'cm' => 'Cameroon', |
252 | | - 'ca' => 'Canada', |
253 | | - 'cv' => 'Cape Verde', |
254 | | - 'ky' => 'Cayman Islands', |
255 | | - 'cf' => 'Central African Republic', |
256 | | - 'td' => 'Chad', |
257 | | - 'cl' => 'Chile', |
258 | | - 'hk' => 'Hong Kong SAR', |
259 | | - 'cn' => 'People\'s Republic of China', |
260 | | - 'tw' => 'Republic of China (Taiwan)', |
261 | | - 'cx' => 'Christmas Island', |
262 | | - 'cc' => 'Cocos (keeling) Islands', |
263 | | - 'co' => 'Colombia', |
264 | | - 'km' => 'Comoros', |
265 | | - 'cg' => 'Congo', |
266 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
267 | | - 'ck' => 'Cook Islands', |
268 | | - 'cr' => 'Costa Rica', |
269 | | - 'ci' => 'Cote D\'ivoire', |
270 | | - 'hr' => 'Croatia', |
271 | | - 'cu' => 'Cuba', |
272 | | - 'cy' => 'Cyprus', |
273 | | - 'cz' => 'Czech Republic', |
274 | | - 'dk' => 'Denmark', |
275 | | - 'dj' => 'Djibouti', |
276 | | - 'dm' => 'Dominica', |
277 | | - 'do' => 'Dominican Republic', |
278 | | - 'ec' => 'Ecuador', |
279 | | - 'eg' => 'Egypt', |
280 | | - 'sv' => 'El Salvador', |
281 | | - 'gq' => 'Equatorial Guinea', |
282 | | - 'er' => 'Eritrea', |
283 | | - 'ee' => 'Estonia', |
284 | | - 'et' => 'Ethiopia', |
285 | | - 'fk' => 'Falkland Islands (malvinas)', |
286 | | - 'fo' => 'Faroe Islands', |
287 | | - 'fj' => 'Fiji', |
288 | | - 'fi' => 'Finland', |
289 | | - 'fr' => 'France', |
290 | | - 'gf' => 'French Guiana', |
291 | | - 'pf' => 'French Polynesia', |
292 | | - 'tf' => 'French Southern Territories', |
293 | | - 'ga' => 'Gabon', |
294 | | - 'gm' => 'Gambia', |
295 | | - 'ge' => 'Georgia', |
296 | | - 'de' => 'Germany', |
297 | | - 'gh' => 'Ghana', |
298 | | - 'gi' => 'Gibraltar', |
299 | | - 'gr' => 'Greece', |
300 | | - 'gl' => 'Greenland', |
301 | | - 'gd' => 'Grenada', |
302 | | - 'gp' => 'Guadeloupe', |
303 | | - 'gu' => 'Guam', |
304 | | - 'gt' => 'Guatemala', |
305 | | - 'gn' => 'Guinea', |
306 | | - 'gw' => 'Guinea-Bissau', |
307 | | - 'gy' => 'Guyana', |
308 | | - 'ht' => 'Haiti', |
309 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
310 | | - 'va' => 'Holy See (Vatican City)', |
311 | | - 'hn' => 'Honduras', |
312 | | - 'hu' => 'Hungary', |
313 | | - 'is' => 'Iceland', |
314 | | - 'in' => 'India', |
315 | | - 'id' => 'Indonesia', |
316 | | - 'ir' => 'Iran, Islamic Republic of', |
317 | | - 'iq' => 'Iraq', |
318 | | - 'ie' => 'Ireland', |
319 | | - 'il' => 'Israel', |
320 | | - 'it' => 'Italy', |
321 | | - 'jm' => 'Jamaica', |
322 | | - 'jp' => 'Japan', |
323 | | - 'jo' => 'Jordan', |
324 | | - 'kz' => 'Kazakhstan', |
325 | | - 'ke' => 'Kenya', |
326 | | - 'ki' => 'Kiribati', |
327 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
328 | | - 'kr' => 'Republic of Korea', |
329 | | - 'kw' => 'Kuwait', |
330 | | - 'kg' => 'Kyrgyzstan', |
331 | | - 'la' => 'Lao People\'s Democratic Republic', |
332 | | - 'lv' => 'Latvia', |
333 | | - 'lb' => 'Lebanon', |
334 | | - 'ls' => 'Lesotho', |
335 | | - 'lr' => 'Liberia', |
336 | | - 'ly' => 'Libyan Arab Jamahiriya', |
337 | | - 'li' => 'Liechtenstein', |
338 | | - 'lt' => 'Lithuania', |
339 | | - 'lu' => 'Luxembourg', |
340 | | - 'mo' => 'Macao', |
341 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
342 | | - 'mg' => 'Madagascar', |
343 | | - 'mw' => 'Malawi', |
344 | | - 'my' => 'Malaysia', |
345 | | - 'mv' => 'Maldives', |
346 | | - 'ml' => 'Mali', |
347 | | - 'mt' => 'Malta', |
348 | | - 'mh' => 'Marshall Islands', |
349 | | - 'mq' => 'Martinique', |
350 | | - 'mr' => 'Mauritania', |
351 | | - 'mu' => 'Mauritius', |
352 | | - 'yt' => 'Mayotte', |
353 | | - 'mx' => 'Mexico', |
354 | | - 'fm' => 'Micronesia, Federated States of', |
355 | | - 'md' => 'Moldova, Republic of', |
356 | | - 'mc' => 'Monaco SAR', |
357 | | - 'mn' => 'Mongolia', |
| 213 | + 'af' => 'Afghanistan', |
| 214 | + 'ax' => 'Aland Islands', |
| 215 | + 'al' => 'Albania', |
| 216 | + 'dz' => 'Algeria', |
| 217 | + 'as' => 'American Samoa', |
| 218 | + 'ad' => 'Andorra', |
| 219 | + 'ao' => 'Angola', |
| 220 | + 'ai' => 'Anguilla', |
| 221 | + 'aq' => 'Antarctica', |
| 222 | + 'ag' => 'Antigua and Barbuda', |
| 223 | + 'ar' => 'Argentina', |
| 224 | + 'am' => 'Armenia', |
| 225 | + 'aw' => 'Aruba', |
| 226 | + 'au' => 'Australia', |
| 227 | + 'at' => 'Austria', |
| 228 | + 'az' => 'Azerbaijan', |
| 229 | + 'bs' => 'Bahamas', |
| 230 | + 'bh' => 'Bahrain', |
| 231 | + 'bd' => 'Bangladesh', |
| 232 | + 'bb' => 'Barbados', |
| 233 | + 'by' => 'Belarus', |
| 234 | + 'be' => 'Belgium', |
| 235 | + 'bz' => 'Belize', |
| 236 | + 'bj' => 'Benin', |
| 237 | + 'bm' => 'Bermuda', |
| 238 | + 'bt' => 'Bhutan', |
| 239 | + 'bo' => 'Bolivia', |
| 240 | + 'ba' => 'Bosnia and Herzegovina', |
| 241 | + 'bw' => 'Botswana', |
| 242 | + 'bv' => 'Bouvet Island', |
| 243 | + 'br' => 'Brazil', |
| 244 | + 'io' => 'British Indian Ocean Territory', |
| 245 | + 'bn' => 'Brunei Darussalam', |
| 246 | + 'bg' => 'Bulgaria', |
| 247 | + 'bf' => 'Burkina Faso', |
| 248 | + 'mm' => 'Burma (Myanmar)', |
| 249 | + 'bi' => 'Burundi', |
| 250 | + 'kh' => 'Cambodia', |
| 251 | + 'cm' => 'Cameroon', |
| 252 | + 'ca' => 'Canada', |
| 253 | + 'cv' => 'Cape Verde', |
| 254 | + 'ky' => 'Cayman Islands', |
| 255 | + 'cf' => 'Central African Republic', |
| 256 | + 'td' => 'Chad', |
| 257 | + 'cl' => 'Chile', |
| 258 | + 'hk' => 'Hong Kong SAR', |
| 259 | + 'cn' => 'People\'s Republic of China', |
| 260 | + 'tw' => 'Republic of China (Taiwan)', |
| 261 | + 'cx' => 'Christmas Island', |
| 262 | + 'cc' => 'Cocos (keeling) Islands', |
| 263 | + 'co' => 'Colombia', |
| 264 | + 'km' => 'Comoros', |
| 265 | + 'cg' => 'Congo', |
| 266 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 267 | + 'ck' => 'Cook Islands', |
| 268 | + 'cr' => 'Costa Rica', |
| 269 | + 'ci' => 'Cote D\'ivoire', |
| 270 | + 'hr' => 'Croatia', |
| 271 | + 'cu' => 'Cuba', |
| 272 | + 'cy' => 'Cyprus', |
| 273 | + 'cz' => 'Czech Republic', |
| 274 | + 'dk' => 'Denmark', |
| 275 | + 'dj' => 'Djibouti', |
| 276 | + 'dm' => 'Dominica', |
| 277 | + 'do' => 'Dominican Republic', |
| 278 | + 'ec' => 'Ecuador', |
| 279 | + 'eg' => 'Egypt', |
| 280 | + 'sv' => 'El Salvador', |
| 281 | + 'gq' => 'Equatorial Guinea', |
| 282 | + 'er' => 'Eritrea', |
| 283 | + 'ee' => 'Estonia', |
| 284 | + 'et' => 'Ethiopia', |
| 285 | + 'fk' => 'Falkland Islands (malvinas)', |
| 286 | + 'fo' => 'Faroe Islands', |
| 287 | + 'fj' => 'Fiji', |
| 288 | + 'fi' => 'Finland', |
| 289 | + 'fr' => 'France', |
| 290 | + 'gf' => 'French Guiana', |
| 291 | + 'pf' => 'French Polynesia', |
| 292 | + 'tf' => 'French Southern Territories', |
| 293 | + 'ga' => 'Gabon', |
| 294 | + 'gm' => 'Gambia', |
| 295 | + 'ge' => 'Georgia', |
| 296 | + 'de' => 'Germany', |
| 297 | + 'gh' => 'Ghana', |
| 298 | + 'gi' => 'Gibraltar', |
| 299 | + 'gr' => 'Greece', |
| 300 | + 'gl' => 'Greenland', |
| 301 | + 'gd' => 'Grenada', |
| 302 | + 'gp' => 'Guadeloupe', |
| 303 | + 'gu' => 'Guam', |
| 304 | + 'gt' => 'Guatemala', |
| 305 | + 'gn' => 'Guinea', |
| 306 | + 'gw' => 'Guinea-Bissau', |
| 307 | + 'gy' => 'Guyana', |
| 308 | + 'ht' => 'Haiti', |
| 309 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 310 | + 'va' => 'Holy See (Vatican City)', |
| 311 | + 'hn' => 'Honduras', |
| 312 | + 'hu' => 'Hungary', |
| 313 | + 'is' => 'Iceland', |
| 314 | + 'in' => 'India', |
| 315 | + 'id' => 'Indonesia', |
| 316 | + 'ir' => 'Iran, Islamic Republic of', |
| 317 | + 'iq' => 'Iraq', |
| 318 | + 'ie' => 'Ireland', |
| 319 | + 'il' => 'Israel', |
| 320 | + 'it' => 'Italy', |
| 321 | + 'jm' => 'Jamaica', |
| 322 | + 'jp' => 'Japan', |
| 323 | + 'jo' => 'Jordan', |
| 324 | + 'kz' => 'Kazakhstan', |
| 325 | + 'ke' => 'Kenya', |
| 326 | + 'ki' => 'Kiribati', |
| 327 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 328 | + 'kr' => 'Republic of Korea', |
| 329 | + 'kw' => 'Kuwait', |
| 330 | + 'kg' => 'Kyrgyzstan', |
| 331 | + 'la' => 'Lao People\'s Democratic Republic', |
| 332 | + 'lv' => 'Latvia', |
| 333 | + 'lb' => 'Lebanon', |
| 334 | + 'ls' => 'Lesotho', |
| 335 | + 'lr' => 'Liberia', |
| 336 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 337 | + 'li' => 'Liechtenstein', |
| 338 | + 'lt' => 'Lithuania', |
| 339 | + 'lu' => 'Luxembourg', |
| 340 | + 'mo' => 'Macao', |
| 341 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 342 | + 'mg' => 'Madagascar', |
| 343 | + 'mw' => 'Malawi', |
| 344 | + 'my' => 'Malaysia', |
| 345 | + 'mv' => 'Maldives', |
| 346 | + 'ml' => 'Mali', |
| 347 | + 'mt' => 'Malta', |
| 348 | + 'mh' => 'Marshall Islands', |
| 349 | + 'mq' => 'Martinique', |
| 350 | + 'mr' => 'Mauritania', |
| 351 | + 'mu' => 'Mauritius', |
| 352 | + 'yt' => 'Mayotte', |
| 353 | + 'mx' => 'Mexico', |
| 354 | + 'fm' => 'Micronesia, Federated States of', |
| 355 | + 'md' => 'Moldova, Republic of', |
| 356 | + 'mc' => 'Monaco SAR', |
| 357 | + 'mn' => 'Mongolia', |
358 | 358 | 'me' => 'Montenegro', |
359 | | - 'ms' => 'Montserrat', |
360 | | - 'ma' => 'Morocco', |
361 | | - 'mz' => 'Mozambique', |
362 | | - 'na' => 'Namibia', |
363 | | - 'nr' => 'Nauru', |
364 | | - 'np' => 'Nepal', |
365 | | - 'nl' => 'Netherlands', |
366 | | - 'an' => 'Netherlands Antilles', |
367 | | - 'nc' => 'New Caledonia', |
368 | | - 'nz' => 'New Zealand', |
369 | | - 'ni' => 'Nicaragua', |
370 | | - 'ne' => 'Niger', |
371 | | - 'ng' => 'Nigeria', |
372 | | - 'nu' => 'Niue', |
373 | | - 'nf' => 'Norfolk Island', |
374 | | - 'mp' => 'Northern Mariana Islands', |
375 | | - 'no' => 'Norway', |
376 | | - 'om' => 'Oman', |
377 | | - 'pk' => 'Pakistan', |
378 | | - 'pw' => 'Palau', |
379 | | - 'ps' => 'Palestinian Territory', |
380 | | - 'pa' => 'Panama', |
381 | | - 'pg' => 'Papua New Guinea', |
382 | | - 'py' => 'Paraguay', |
383 | | - 'pe' => 'Peru', |
384 | | - 'ph' => 'Philippines', |
385 | | - 'pn' => 'Pitcairn', |
386 | | - 'pl' => 'Poland', |
387 | | - 'pt' => 'Portugal', |
388 | | - 'pr' => 'Puerto Rico', |
389 | | - 'qa' => 'Qatar', |
390 | | - 're' => 'Reunion', |
391 | | - 'ro' => 'Romania', |
392 | | - 'ru' => 'Russian Federation', |
393 | | - 'rw' => 'Rwanda', |
394 | | - 'sh' => 'Saint Helena', |
395 | | - 'kn' => 'Saint Kitts and Nevis', |
396 | | - 'lc' => 'Saint Lucia', |
397 | | - 'pm' => 'Saint Pierre and Miquelon', |
398 | | - 'vc' => 'Saint Vincent and the Grenadines', |
399 | | - 'ws' => 'Samoa', |
400 | | - 'sm' => 'San Marino', |
401 | | - 'st' => 'Sao Tome and Principe', |
402 | | - 'sa' => 'Saudi Arabia', |
403 | | - 'sn' => 'Senegal', |
404 | | - 'rs' => 'Serbia', |
405 | | - 'sc' => 'Seychelles', |
406 | | - 'sl' => 'Sierra Leone', |
407 | | - 'sg' => 'Singapore', |
408 | | - 'sk' => 'Slovakia', |
409 | | - 'si' => 'Slovenia', |
410 | | - 'sb' => 'Solomon Islands', |
411 | | - 'so' => 'Somalia', |
412 | | - 'za' => 'South Africa', |
413 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
414 | | - 'es' => 'Spain', |
415 | | - 'lk' => 'Sri Lanka', |
416 | | - 'sd' => 'Sudan', |
417 | | - 'sr' => 'Suriname', |
418 | | - 'sj' => 'Svalbard and Jan Mayen', |
419 | | - 'sz' => 'Swaziland', |
420 | | - 'se' => 'Sweden', |
421 | | - 'ch' => 'Switzerland', |
422 | | - 'sy' => 'Syrian Arab Republic', |
423 | | - 'tj' => 'Tajikistan', |
424 | | - 'tz' => 'Tanzania, United Republic of', |
425 | | - 'th' => 'Thailand', |
426 | | - 'tl' => 'Timor-leste', |
427 | | - 'tg' => 'Togo', |
428 | | - 'tk' => 'Tokelau', |
429 | | - 'to' => 'Tonga', |
430 | | - 'tt' => 'Trinidad and Tobago', |
431 | | - 'tn' => 'Tunisia', |
432 | | - 'tr' => 'Turkey', |
433 | | - 'tm' => 'Turkmenistan', |
434 | | - 'tc' => 'Turks and Caicos Islands', |
435 | | - 'tv' => 'Tuvalu', |
436 | | - 'ug' => 'Uganda', |
437 | | - 'ua' => 'Ukraine', |
438 | | - 'ae' => 'United Arab Emirates', |
439 | | - 'gb' => 'United Kingdom', |
440 | | - 'us' => 'United States', |
441 | | - 'um' => 'United States Minor Outlying Islands', |
442 | | - 'uy' => 'Uruguay', |
443 | | - 'uz' => 'Uzbekistan', |
444 | | - 'vu' => 'Vanuatu', |
445 | | - 've' => 'Venezuela', |
446 | | - 'vn' => 'Viet Nam', |
447 | | - 'vg' => 'Virgin Islands, British', |
448 | | - 'vi' => 'Virgin Islands, U.S.', |
449 | | - 'wf' => 'Wallis and Futuna', |
450 | | - 'eh' => 'Western Sahara', |
451 | | - 'ye' => 'Yemen', |
452 | | - 'zm' => 'Zambia', |
453 | | - 'zw' => 'Zimbabwe' |
| 359 | + 'ms' => 'Montserrat', |
| 360 | + 'ma' => 'Morocco', |
| 361 | + 'mz' => 'Mozambique', |
| 362 | + 'na' => 'Namibia', |
| 363 | + 'nr' => 'Nauru', |
| 364 | + 'np' => 'Nepal', |
| 365 | + 'nl' => 'Netherlands', |
| 366 | + 'an' => 'Netherlands Antilles', |
| 367 | + 'nc' => 'New Caledonia', |
| 368 | + 'nz' => 'New Zealand', |
| 369 | + 'ni' => 'Nicaragua', |
| 370 | + 'ne' => 'Niger', |
| 371 | + 'ng' => 'Nigeria', |
| 372 | + 'nu' => 'Niue', |
| 373 | + 'nf' => 'Norfolk Island', |
| 374 | + 'mp' => 'Northern Mariana Islands', |
| 375 | + 'no' => 'Norway', |
| 376 | + 'om' => 'Oman', |
| 377 | + 'pk' => 'Pakistan', |
| 378 | + 'pw' => 'Palau', |
| 379 | + 'ps' => 'Palestinian Territory', |
| 380 | + 'pa' => 'Panama', |
| 381 | + 'pg' => 'Papua New Guinea', |
| 382 | + 'py' => 'Paraguay', |
| 383 | + 'pe' => 'Peru', |
| 384 | + 'ph' => 'Philippines', |
| 385 | + 'pn' => 'Pitcairn', |
| 386 | + 'pl' => 'Poland', |
| 387 | + 'pt' => 'Portugal', |
| 388 | + 'pr' => 'Puerto Rico', |
| 389 | + 'qa' => 'Qatar', |
| 390 | + 're' => 'Reunion', |
| 391 | + 'ro' => 'Romania', |
| 392 | + 'ru' => 'Russian Federation', |
| 393 | + 'rw' => 'Rwanda', |
| 394 | + 'sh' => 'Saint Helena', |
| 395 | + 'kn' => 'Saint Kitts and Nevis', |
| 396 | + 'lc' => 'Saint Lucia', |
| 397 | + 'pm' => 'Saint Pierre and Miquelon', |
| 398 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 399 | + 'ws' => 'Samoa', |
| 400 | + 'sm' => 'San Marino', |
| 401 | + 'st' => 'Sao Tome and Principe', |
| 402 | + 'sa' => 'Saudi Arabia', |
| 403 | + 'sn' => 'Senegal', |
| 404 | + 'rs' => 'Serbia', |
| 405 | + 'sc' => 'Seychelles', |
| 406 | + 'sl' => 'Sierra Leone', |
| 407 | + 'sg' => 'Singapore', |
| 408 | + 'sk' => 'Slovakia', |
| 409 | + 'si' => 'Slovenia', |
| 410 | + 'sb' => 'Solomon Islands', |
| 411 | + 'so' => 'Somalia', |
| 412 | + 'za' => 'South Africa', |
| 413 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 414 | + 'es' => 'Spain', |
| 415 | + 'lk' => 'Sri Lanka', |
| 416 | + 'sd' => 'Sudan', |
| 417 | + 'sr' => 'Suriname', |
| 418 | + 'sj' => 'Svalbard and Jan Mayen', |
| 419 | + 'sz' => 'Swaziland', |
| 420 | + 'se' => 'Sweden', |
| 421 | + 'ch' => 'Switzerland', |
| 422 | + 'sy' => 'Syrian Arab Republic', |
| 423 | + 'tj' => 'Tajikistan', |
| 424 | + 'tz' => 'Tanzania, United Republic of', |
| 425 | + 'th' => 'Thailand', |
| 426 | + 'tl' => 'Timor-leste', |
| 427 | + 'tg' => 'Togo', |
| 428 | + 'tk' => 'Tokelau', |
| 429 | + 'to' => 'Tonga', |
| 430 | + 'tt' => 'Trinidad and Tobago', |
| 431 | + 'tn' => 'Tunisia', |
| 432 | + 'tr' => 'Turkey', |
| 433 | + 'tm' => 'Turkmenistan', |
| 434 | + 'tc' => 'Turks and Caicos Islands', |
| 435 | + 'tv' => 'Tuvalu', |
| 436 | + 'ug' => 'Uganda', |
| 437 | + 'ua' => 'Ukraine', |
| 438 | + 'ae' => 'United Arab Emirates', |
| 439 | + 'gb' => 'United Kingdom', |
| 440 | + 'us' => 'United States', |
| 441 | + 'um' => 'United States Minor Outlying Islands', |
| 442 | + 'uy' => 'Uruguay', |
| 443 | + 'uz' => 'Uzbekistan', |
| 444 | + 'vu' => 'Vanuatu', |
| 445 | + 've' => 'Venezuela', |
| 446 | + 'vn' => 'Viet Nam', |
| 447 | + 'vg' => 'Virgin Islands, British', |
| 448 | + 'vi' => 'Virgin Islands, U.S.', |
| 449 | + 'wf' => 'Wallis and Futuna', |
| 450 | + 'eh' => 'Western Sahara', |
| 451 | + 'ye' => 'Yemen', |
| 452 | + 'zm' => 'Zambia', |
| 453 | + 'zw' => 'Zimbabwe' |
454 | 454 | ); |
Index: trunk/wikimania/wmreg/includes/notinuse/language_fr.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | |
15 | 15 | 'legend1' => 'Informations personnelles', |
16 | 16 | 'title1' => |
17 | | -' <p><strong>Données d\'identification |
| 17 | +' <p><strong>Données d\'identification |
18 | 18 | |
19 | 19 | personnelle</strong></p> |
20 | 20 | <p>S’il vous plaît remplir vos données personnelles |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | 'day' => '', |
60 | 60 | |
61 | 61 | 'title2' => |
62 | | -' <p><strong>Connaissances |
| 62 | +' <p><strong>Connaissances |
63 | 63 | |
64 | 64 | linguistiques</strong></p>', |
65 | 65 | 'langn' => 'Langue maternelle', |
— | — | @@ -80,16 +80,16 @@ |
81 | 81 | 'lang3_level' => 'Niveau d\'apprentissage de la langue 3', |
82 | 82 | |
83 | 83 | 'title3' => |
84 | | -' <p><strong>Projets Wikimedia et courrier |
| 84 | +' <p><strong>Projets Wikimedia et courrier |
85 | 85 | |
86 | 86 | électronique(s)</strong></p> |
87 | 87 | <ul class="form_notice"> |
88 | | - <li>Ces informations seront utilisées pour |
| 88 | + <li>Ces informations seront utilisées pour |
89 | 89 | |
90 | 90 | enregistrement et notifications urgentes sur Wikimania 2008 |
91 | 91 | |
92 | 92 | seulement.</li> |
93 | | - </ul> |
| 93 | + </ul> |
94 | 94 | ', |
95 | 95 | 'wiki_id' => 'Compte Wikimedia préféré', |
96 | 96 | 'email' => 'Votre courrier électronique', |
— | — | @@ -97,10 +97,10 @@ |
98 | 98 | |
99 | 99 | 'legend2' => 'Participation aux conférences', |
100 | 100 | 'title4' => |
101 | | -' <p><strong>Participation, informations sur le |
| 101 | +' <p><strong>Participation, informations sur le |
102 | 102 | |
103 | 103 | badge, et divers</strong></p> |
104 | | - <p>Pour mieux organiser le logement, les pistes de |
| 104 | + <p>Pour mieux organiser le logement, les pistes de |
105 | 105 | |
106 | 106 | conférences et les services connexes, s\'il vous plaît |
107 | 107 | |
— | — | @@ -146,8 +146,8 @@ |
147 | 147 | <strong>arabe</strong> et <strong>anglais</strong>)', |
148 | 148 | |
149 | 149 | 'title5' => |
150 | | -' <p><strong>Logement</strong></p> |
151 | | - <p>Vous avez deux options disponibles pour le |
| 150 | +' <p><strong>Logement</strong></p> |
| 151 | + <p>Vous avez deux options disponibles pour le |
152 | 152 | |
153 | 153 | logement: vous pouvez logé dans un hôtel du centre-ville à |
154 | 154 | |
— | — | @@ -181,8 +181,8 @@ |
182 | 182 | 'room6' => 'Aucune préférence', |
183 | 183 | |
184 | 184 | 'title6' => |
185 | | -' <p><strong>Paiement</strong></p> |
186 | | - <p>Vous pouvez payer avec PayPal ou carte de crédit |
| 185 | +' <p><strong>Paiement</strong></p> |
| 186 | + <p>Vous pouvez payer avec PayPal ou carte de crédit |
187 | 187 | |
188 | 188 | (via PayPal) en <a href="https://www.paypal.com/cgi- |
189 | 189 | |
— | — | @@ -353,247 +353,247 @@ |
354 | 354 | |
355 | 355 | |
356 | 356 | $lang_countries = array( |
357 | | - 'af' => 'Afghanistan', |
358 | | - 'ax' => 'Aland Islands', |
359 | | - 'al' => 'Albania', |
360 | | - 'dz' => 'Algeria', |
361 | | - 'as' => 'American Samoa', |
362 | | - 'ad' => 'Andorra', |
363 | | - 'ao' => 'Angola', |
364 | | - 'ai' => 'Anguilla', |
365 | | - 'aq' => 'Antarctica', |
366 | | - 'ag' => 'Antigua and Barbuda', |
367 | | - 'ar' => 'Argentina', |
368 | | - 'am' => 'Armenia', |
369 | | - 'aw' => 'Aruba', |
370 | | - 'au' => 'Australia', |
371 | | - 'at' => 'Austria', |
372 | | - 'az' => 'Azerbaijan', |
373 | | - 'bs' => 'Bahamas', |
374 | | - 'bh' => 'Bahrain', |
375 | | - 'bd' => 'Bangladesh', |
376 | | - 'bb' => 'Barbados', |
377 | | - 'by' => 'Belarus', |
378 | | - 'be' => 'Belgium', |
379 | | - 'bz' => 'Belize', |
380 | | - 'bj' => 'Benin', |
381 | | - 'bm' => 'Bermuda', |
382 | | - 'bt' => 'Bhutan', |
383 | | - 'bo' => 'Bolivia', |
384 | | - 'ba' => 'Bosnia and Herzegovina', |
385 | | - 'bw' => 'Botswana', |
386 | | - 'bv' => 'Bouvet Island', |
387 | | - 'br' => 'Brazil', |
388 | | - 'io' => 'British Indian Ocean Territory', |
389 | | - 'bn' => 'Brunei Darussalam', |
390 | | - 'bg' => 'Bulgaria', |
391 | | - 'bf' => 'Burkina Faso', |
392 | | - 'mm' => 'Burma (Myanmar)', |
393 | | - 'bi' => 'Burundi', |
394 | | - 'kh' => 'Cambodia', |
395 | | - 'cm' => 'Cameroon', |
396 | | - 'ca' => 'Canada', |
397 | | - 'cv' => 'Cape Verde', |
398 | | - 'ky' => 'Cayman Islands', |
399 | | - 'cf' => 'Central African Republic', |
400 | | - 'td' => 'Chad', |
401 | | - 'cl' => 'Chile', |
402 | | - 'hk' => 'Hong Kong SAR', |
403 | | - 'cn' => 'People\'s Republic of China', |
404 | | - 'tw' => 'Republic of China (Taiwan)', |
405 | | - 'cx' => 'Christmas Island', |
406 | | - 'cc' => 'Cocos (keeling) Islands', |
407 | | - 'co' => 'Colombia', |
408 | | - 'km' => 'Comoros', |
409 | | - 'cg' => 'Congo', |
410 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
411 | | - 'ck' => 'Cook Islands', |
412 | | - 'cr' => 'Costa Rica', |
413 | | - 'ci' => 'Cote D\'ivoire', |
414 | | - 'hr' => 'Croatia', |
415 | | - 'cu' => 'Cuba', |
416 | | - 'cy' => 'Cyprus', |
417 | | - 'cz' => 'Czech Republic', |
418 | | - 'dk' => 'Denmark', |
419 | | - 'dj' => 'Djibouti', |
420 | | - 'dm' => 'Dominica', |
421 | | - 'do' => 'Dominican Republic', |
422 | | - 'ec' => 'Ecuador', |
423 | | - 'eg' => 'Egypt', |
424 | | - 'sv' => 'El Salvador', |
425 | | - 'gq' => 'Equatorial Guinea', |
426 | | - 'er' => 'Eritrea', |
427 | | - 'ee' => 'Estonia', |
428 | | - 'et' => 'Ethiopia', |
429 | | - 'fk' => 'Falkland Islands (malvinas)', |
430 | | - 'fo' => 'Faroe Islands', |
431 | | - 'fj' => 'Fiji', |
432 | | - 'fi' => 'Finland', |
433 | | - 'fr' => 'France', |
434 | | - 'gf' => 'French Guiana', |
435 | | - 'pf' => 'French Polynesia', |
436 | | - 'tf' => 'French Southern Territories', |
437 | | - 'ga' => 'Gabon', |
438 | | - 'gm' => 'Gambia', |
439 | | - 'ge' => 'Georgia', |
440 | | - 'de' => 'Germany', |
441 | | - 'gh' => 'Ghana', |
442 | | - 'gi' => 'Gibraltar', |
443 | | - 'gr' => 'Greece', |
444 | | - 'gl' => 'Greenland', |
445 | | - 'gd' => 'Grenada', |
446 | | - 'gp' => 'Guadeloupe', |
447 | | - 'gu' => 'Guam', |
448 | | - 'gt' => 'Guatemala', |
449 | | - 'gn' => 'Guinea', |
450 | | - 'gw' => 'Guinea-Bissau', |
451 | | - 'gy' => 'Guyana', |
452 | | - 'ht' => 'Haiti', |
453 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
454 | | - 'va' => 'Holy See (Vatican City)', |
455 | | - 'hn' => 'Honduras', |
456 | | - 'hu' => 'Hungary', |
457 | | - 'is' => 'Iceland', |
458 | | - 'in' => 'India', |
459 | | - 'id' => 'Indonesia', |
460 | | - 'ir' => 'Iran, Islamic Republic of', |
461 | | - 'iq' => 'Iraq', |
462 | | - 'ie' => 'Ireland', |
463 | | - 'il' => 'Israel', |
464 | | - 'it' => 'Italy', |
465 | | - 'jm' => 'Jamaica', |
466 | | - 'jp' => 'Japan', |
467 | | - 'jo' => 'Jordan', |
468 | | - 'kz' => 'Kazakhstan', |
469 | | - 'ke' => 'Kenya', |
470 | | - 'ki' => 'Kiribati', |
471 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
472 | | - 'kr' => 'Republic of Korea', |
473 | | - 'kw' => 'Kuwait', |
474 | | - 'kg' => 'Kyrgyzstan', |
475 | | - 'la' => 'Lao People\'s Democratic Republic', |
476 | | - 'lv' => 'Latvia', |
477 | | - 'lb' => 'Lebanon', |
478 | | - 'ls' => 'Lesotho', |
479 | | - 'lr' => 'Liberia', |
480 | | - 'ly' => 'Libyan Arab Jamahiriya', |
481 | | - 'li' => 'Liechtenstein', |
482 | | - 'lt' => 'Lithuania', |
483 | | - 'lu' => 'Luxembourg', |
484 | | - 'mo' => 'Macao', |
485 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
486 | | - 'mg' => 'Madagascar', |
487 | | - 'mw' => 'Malawi', |
488 | | - 'my' => 'Malaysia', |
489 | | - 'mv' => 'Maldives', |
490 | | - 'ml' => 'Mali', |
491 | | - 'mt' => 'Malta', |
492 | | - 'mh' => 'Marshall Islands', |
493 | | - 'mq' => 'Martinique', |
494 | | - 'mr' => 'Mauritania', |
495 | | - 'mu' => 'Mauritius', |
496 | | - 'yt' => 'Mayotte', |
497 | | - 'mx' => 'Mexico', |
498 | | - 'fm' => 'Micronesia, Federated States of', |
499 | | - 'md' => 'Moldova, Republic of', |
500 | | - 'mc' => 'Monaco SAR', |
501 | | - 'mn' => 'Mongolia', |
| 357 | + 'af' => 'Afghanistan', |
| 358 | + 'ax' => 'Aland Islands', |
| 359 | + 'al' => 'Albania', |
| 360 | + 'dz' => 'Algeria', |
| 361 | + 'as' => 'American Samoa', |
| 362 | + 'ad' => 'Andorra', |
| 363 | + 'ao' => 'Angola', |
| 364 | + 'ai' => 'Anguilla', |
| 365 | + 'aq' => 'Antarctica', |
| 366 | + 'ag' => 'Antigua and Barbuda', |
| 367 | + 'ar' => 'Argentina', |
| 368 | + 'am' => 'Armenia', |
| 369 | + 'aw' => 'Aruba', |
| 370 | + 'au' => 'Australia', |
| 371 | + 'at' => 'Austria', |
| 372 | + 'az' => 'Azerbaijan', |
| 373 | + 'bs' => 'Bahamas', |
| 374 | + 'bh' => 'Bahrain', |
| 375 | + 'bd' => 'Bangladesh', |
| 376 | + 'bb' => 'Barbados', |
| 377 | + 'by' => 'Belarus', |
| 378 | + 'be' => 'Belgium', |
| 379 | + 'bz' => 'Belize', |
| 380 | + 'bj' => 'Benin', |
| 381 | + 'bm' => 'Bermuda', |
| 382 | + 'bt' => 'Bhutan', |
| 383 | + 'bo' => 'Bolivia', |
| 384 | + 'ba' => 'Bosnia and Herzegovina', |
| 385 | + 'bw' => 'Botswana', |
| 386 | + 'bv' => 'Bouvet Island', |
| 387 | + 'br' => 'Brazil', |
| 388 | + 'io' => 'British Indian Ocean Territory', |
| 389 | + 'bn' => 'Brunei Darussalam', |
| 390 | + 'bg' => 'Bulgaria', |
| 391 | + 'bf' => 'Burkina Faso', |
| 392 | + 'mm' => 'Burma (Myanmar)', |
| 393 | + 'bi' => 'Burundi', |
| 394 | + 'kh' => 'Cambodia', |
| 395 | + 'cm' => 'Cameroon', |
| 396 | + 'ca' => 'Canada', |
| 397 | + 'cv' => 'Cape Verde', |
| 398 | + 'ky' => 'Cayman Islands', |
| 399 | + 'cf' => 'Central African Republic', |
| 400 | + 'td' => 'Chad', |
| 401 | + 'cl' => 'Chile', |
| 402 | + 'hk' => 'Hong Kong SAR', |
| 403 | + 'cn' => 'People\'s Republic of China', |
| 404 | + 'tw' => 'Republic of China (Taiwan)', |
| 405 | + 'cx' => 'Christmas Island', |
| 406 | + 'cc' => 'Cocos (keeling) Islands', |
| 407 | + 'co' => 'Colombia', |
| 408 | + 'km' => 'Comoros', |
| 409 | + 'cg' => 'Congo', |
| 410 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 411 | + 'ck' => 'Cook Islands', |
| 412 | + 'cr' => 'Costa Rica', |
| 413 | + 'ci' => 'Cote D\'ivoire', |
| 414 | + 'hr' => 'Croatia', |
| 415 | + 'cu' => 'Cuba', |
| 416 | + 'cy' => 'Cyprus', |
| 417 | + 'cz' => 'Czech Republic', |
| 418 | + 'dk' => 'Denmark', |
| 419 | + 'dj' => 'Djibouti', |
| 420 | + 'dm' => 'Dominica', |
| 421 | + 'do' => 'Dominican Republic', |
| 422 | + 'ec' => 'Ecuador', |
| 423 | + 'eg' => 'Egypt', |
| 424 | + 'sv' => 'El Salvador', |
| 425 | + 'gq' => 'Equatorial Guinea', |
| 426 | + 'er' => 'Eritrea', |
| 427 | + 'ee' => 'Estonia', |
| 428 | + 'et' => 'Ethiopia', |
| 429 | + 'fk' => 'Falkland Islands (malvinas)', |
| 430 | + 'fo' => 'Faroe Islands', |
| 431 | + 'fj' => 'Fiji', |
| 432 | + 'fi' => 'Finland', |
| 433 | + 'fr' => 'France', |
| 434 | + 'gf' => 'French Guiana', |
| 435 | + 'pf' => 'French Polynesia', |
| 436 | + 'tf' => 'French Southern Territories', |
| 437 | + 'ga' => 'Gabon', |
| 438 | + 'gm' => 'Gambia', |
| 439 | + 'ge' => 'Georgia', |
| 440 | + 'de' => 'Germany', |
| 441 | + 'gh' => 'Ghana', |
| 442 | + 'gi' => 'Gibraltar', |
| 443 | + 'gr' => 'Greece', |
| 444 | + 'gl' => 'Greenland', |
| 445 | + 'gd' => 'Grenada', |
| 446 | + 'gp' => 'Guadeloupe', |
| 447 | + 'gu' => 'Guam', |
| 448 | + 'gt' => 'Guatemala', |
| 449 | + 'gn' => 'Guinea', |
| 450 | + 'gw' => 'Guinea-Bissau', |
| 451 | + 'gy' => 'Guyana', |
| 452 | + 'ht' => 'Haiti', |
| 453 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 454 | + 'va' => 'Holy See (Vatican City)', |
| 455 | + 'hn' => 'Honduras', |
| 456 | + 'hu' => 'Hungary', |
| 457 | + 'is' => 'Iceland', |
| 458 | + 'in' => 'India', |
| 459 | + 'id' => 'Indonesia', |
| 460 | + 'ir' => 'Iran, Islamic Republic of', |
| 461 | + 'iq' => 'Iraq', |
| 462 | + 'ie' => 'Ireland', |
| 463 | + 'il' => 'Israel', |
| 464 | + 'it' => 'Italy', |
| 465 | + 'jm' => 'Jamaica', |
| 466 | + 'jp' => 'Japan', |
| 467 | + 'jo' => 'Jordan', |
| 468 | + 'kz' => 'Kazakhstan', |
| 469 | + 'ke' => 'Kenya', |
| 470 | + 'ki' => 'Kiribati', |
| 471 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 472 | + 'kr' => 'Republic of Korea', |
| 473 | + 'kw' => 'Kuwait', |
| 474 | + 'kg' => 'Kyrgyzstan', |
| 475 | + 'la' => 'Lao People\'s Democratic Republic', |
| 476 | + 'lv' => 'Latvia', |
| 477 | + 'lb' => 'Lebanon', |
| 478 | + 'ls' => 'Lesotho', |
| 479 | + 'lr' => 'Liberia', |
| 480 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 481 | + 'li' => 'Liechtenstein', |
| 482 | + 'lt' => 'Lithuania', |
| 483 | + 'lu' => 'Luxembourg', |
| 484 | + 'mo' => 'Macao', |
| 485 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 486 | + 'mg' => 'Madagascar', |
| 487 | + 'mw' => 'Malawi', |
| 488 | + 'my' => 'Malaysia', |
| 489 | + 'mv' => 'Maldives', |
| 490 | + 'ml' => 'Mali', |
| 491 | + 'mt' => 'Malta', |
| 492 | + 'mh' => 'Marshall Islands', |
| 493 | + 'mq' => 'Martinique', |
| 494 | + 'mr' => 'Mauritania', |
| 495 | + 'mu' => 'Mauritius', |
| 496 | + 'yt' => 'Mayotte', |
| 497 | + 'mx' => 'Mexico', |
| 498 | + 'fm' => 'Micronesia, Federated States of', |
| 499 | + 'md' => 'Moldova, Republic of', |
| 500 | + 'mc' => 'Monaco SAR', |
| 501 | + 'mn' => 'Mongolia', |
502 | 502 | 'me' => 'Montenegro', |
503 | | - 'ms' => 'Montserrat', |
504 | | - 'ma' => 'Morocco', |
505 | | - 'mz' => 'Mozambique', |
506 | | - 'na' => 'Namibia', |
507 | | - 'nr' => 'Nauru', |
508 | | - 'np' => 'Nepal', |
509 | | - 'nl' => 'Netherlands', |
510 | | - 'an' => 'Netherlands Antilles', |
511 | | - 'nc' => 'New Caledonia', |
512 | | - 'nz' => 'New Zealand', |
513 | | - 'ni' => 'Nicaragua', |
514 | | - 'ne' => 'Niger', |
515 | | - 'ng' => 'Nigeria', |
516 | | - 'nu' => 'Niue', |
517 | | - 'nf' => 'Norfolk Island', |
518 | | - 'mp' => 'Northern Mariana Islands', |
519 | | - 'no' => 'Norway', |
520 | | - 'om' => 'Oman', |
521 | | - 'pk' => 'Pakistan', |
522 | | - 'pw' => 'Palau', |
523 | | - 'ps' => 'Palestinian Territory', |
524 | | - 'pa' => 'Panama', |
525 | | - 'pg' => 'Papua New Guinea', |
526 | | - 'py' => 'Paraguay', |
527 | | - 'pe' => 'Peru', |
528 | | - 'ph' => 'Philippines', |
529 | | - 'pn' => 'Pitcairn', |
530 | | - 'pl' => 'Poland', |
531 | | - 'pt' => 'Portugal', |
532 | | - 'pr' => 'Puerto Rico', |
533 | | - 'qa' => 'Qatar', |
534 | | - 're' => 'Reunion', |
535 | | - 'ro' => 'Romania', |
536 | | - 'ru' => 'Russian Federation', |
537 | | - 'rw' => 'Rwanda', |
538 | | - 'sh' => 'Saint Helena', |
539 | | - 'kn' => 'Saint Kitts and Nevis', |
540 | | - 'lc' => 'Saint Lucia', |
541 | | - 'pm' => 'Saint Pierre and Miquelon', |
542 | | - 'vc' => 'Saint Vincent and the Grenadines', |
543 | | - 'ws' => 'Samoa', |
544 | | - 'sm' => 'San Marino', |
545 | | - 'st' => 'Sao Tome and Principe', |
546 | | - 'sa' => 'Saudi Arabia', |
547 | | - 'sn' => 'Senegal', |
548 | | - 'rs' => 'Serbia', |
549 | | - 'sc' => 'Seychelles', |
550 | | - 'sl' => 'Sierra Leone', |
551 | | - 'sg' => 'Singapore', |
552 | | - 'sk' => 'Slovakia', |
553 | | - 'si' => 'Slovenia', |
554 | | - 'sb' => 'Solomon Islands', |
555 | | - 'so' => 'Somalia', |
556 | | - 'za' => 'South Africa', |
557 | | - 'gs' => 'South Georgia and the South Sandwich |
| 503 | + 'ms' => 'Montserrat', |
| 504 | + 'ma' => 'Morocco', |
| 505 | + 'mz' => 'Mozambique', |
| 506 | + 'na' => 'Namibia', |
| 507 | + 'nr' => 'Nauru', |
| 508 | + 'np' => 'Nepal', |
| 509 | + 'nl' => 'Netherlands', |
| 510 | + 'an' => 'Netherlands Antilles', |
| 511 | + 'nc' => 'New Caledonia', |
| 512 | + 'nz' => 'New Zealand', |
| 513 | + 'ni' => 'Nicaragua', |
| 514 | + 'ne' => 'Niger', |
| 515 | + 'ng' => 'Nigeria', |
| 516 | + 'nu' => 'Niue', |
| 517 | + 'nf' => 'Norfolk Island', |
| 518 | + 'mp' => 'Northern Mariana Islands', |
| 519 | + 'no' => 'Norway', |
| 520 | + 'om' => 'Oman', |
| 521 | + 'pk' => 'Pakistan', |
| 522 | + 'pw' => 'Palau', |
| 523 | + 'ps' => 'Palestinian Territory', |
| 524 | + 'pa' => 'Panama', |
| 525 | + 'pg' => 'Papua New Guinea', |
| 526 | + 'py' => 'Paraguay', |
| 527 | + 'pe' => 'Peru', |
| 528 | + 'ph' => 'Philippines', |
| 529 | + 'pn' => 'Pitcairn', |
| 530 | + 'pl' => 'Poland', |
| 531 | + 'pt' => 'Portugal', |
| 532 | + 'pr' => 'Puerto Rico', |
| 533 | + 'qa' => 'Qatar', |
| 534 | + 're' => 'Reunion', |
| 535 | + 'ro' => 'Romania', |
| 536 | + 'ru' => 'Russian Federation', |
| 537 | + 'rw' => 'Rwanda', |
| 538 | + 'sh' => 'Saint Helena', |
| 539 | + 'kn' => 'Saint Kitts and Nevis', |
| 540 | + 'lc' => 'Saint Lucia', |
| 541 | + 'pm' => 'Saint Pierre and Miquelon', |
| 542 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 543 | + 'ws' => 'Samoa', |
| 544 | + 'sm' => 'San Marino', |
| 545 | + 'st' => 'Sao Tome and Principe', |
| 546 | + 'sa' => 'Saudi Arabia', |
| 547 | + 'sn' => 'Senegal', |
| 548 | + 'rs' => 'Serbia', |
| 549 | + 'sc' => 'Seychelles', |
| 550 | + 'sl' => 'Sierra Leone', |
| 551 | + 'sg' => 'Singapore', |
| 552 | + 'sk' => 'Slovakia', |
| 553 | + 'si' => 'Slovenia', |
| 554 | + 'sb' => 'Solomon Islands', |
| 555 | + 'so' => 'Somalia', |
| 556 | + 'za' => 'South Africa', |
| 557 | + 'gs' => 'South Georgia and the South Sandwich |
558 | 558 | |
559 | 559 | Islands', |
560 | | - 'es' => 'Spain', |
561 | | - 'lk' => 'Sri Lanka', |
562 | | - 'sd' => 'Sudan', |
563 | | - 'sr' => 'Suriname', |
564 | | - 'sj' => 'Svalbard and Jan Mayen', |
565 | | - 'sz' => 'Swaziland', |
566 | | - 'se' => 'Sweden', |
567 | | - 'ch' => 'Switzerland', |
568 | | - 'sy' => 'Syrian Arab Republic', |
569 | | - 'tj' => 'Tajikistan', |
570 | | - 'tz' => 'Tanzania, United Republic of', |
571 | | - 'th' => 'Thailand', |
572 | | - 'tl' => 'Timor-leste', |
573 | | - 'tg' => 'Togo', |
574 | | - 'tk' => 'Tokelau', |
575 | | - 'to' => 'Tonga', |
576 | | - 'tt' => 'Trinidad and Tobago', |
577 | | - 'tn' => 'Tunisia', |
578 | | - 'tr' => 'Turkey', |
579 | | - 'tm' => 'Turkmenistan', |
580 | | - 'tc' => 'Turks and Caicos Islands', |
581 | | - 'tv' => 'Tuvalu', |
582 | | - 'ug' => 'Uganda', |
583 | | - 'ua' => 'Ukraine', |
584 | | - 'ae' => 'United Arab Emirates', |
585 | | - 'gb' => 'United Kingdom', |
586 | | - 'us' => 'United States', |
587 | | - 'um' => 'United States Minor Outlying Islands', |
588 | | - 'uy' => 'Uruguay', |
589 | | - 'uz' => 'Uzbekistan', |
590 | | - 'vu' => 'Vanuatu', |
591 | | - 've' => 'Venezuela', |
592 | | - 'vn' => 'Viet Nam', |
593 | | - 'vg' => 'Virgin Islands, British', |
594 | | - 'vi' => 'Virgin Islands, U.S.', |
595 | | - 'wf' => 'Wallis and Futuna', |
596 | | - 'eh' => 'Western Sahara', |
597 | | - 'ye' => 'Yemen', |
598 | | - 'zm' => 'Zambia', |
599 | | - 'zw' => 'Zimbabwe' |
| 560 | + 'es' => 'Spain', |
| 561 | + 'lk' => 'Sri Lanka', |
| 562 | + 'sd' => 'Sudan', |
| 563 | + 'sr' => 'Suriname', |
| 564 | + 'sj' => 'Svalbard and Jan Mayen', |
| 565 | + 'sz' => 'Swaziland', |
| 566 | + 'se' => 'Sweden', |
| 567 | + 'ch' => 'Switzerland', |
| 568 | + 'sy' => 'Syrian Arab Republic', |
| 569 | + 'tj' => 'Tajikistan', |
| 570 | + 'tz' => 'Tanzania, United Republic of', |
| 571 | + 'th' => 'Thailand', |
| 572 | + 'tl' => 'Timor-leste', |
| 573 | + 'tg' => 'Togo', |
| 574 | + 'tk' => 'Tokelau', |
| 575 | + 'to' => 'Tonga', |
| 576 | + 'tt' => 'Trinidad and Tobago', |
| 577 | + 'tn' => 'Tunisia', |
| 578 | + 'tr' => 'Turkey', |
| 579 | + 'tm' => 'Turkmenistan', |
| 580 | + 'tc' => 'Turks and Caicos Islands', |
| 581 | + 'tv' => 'Tuvalu', |
| 582 | + 'ug' => 'Uganda', |
| 583 | + 'ua' => 'Ukraine', |
| 584 | + 'ae' => 'United Arab Emirates', |
| 585 | + 'gb' => 'United Kingdom', |
| 586 | + 'us' => 'United States', |
| 587 | + 'um' => 'United States Minor Outlying Islands', |
| 588 | + 'uy' => 'Uruguay', |
| 589 | + 'uz' => 'Uzbekistan', |
| 590 | + 'vu' => 'Vanuatu', |
| 591 | + 've' => 'Venezuela', |
| 592 | + 'vn' => 'Viet Nam', |
| 593 | + 'vg' => 'Virgin Islands, British', |
| 594 | + 'vi' => 'Virgin Islands, U.S.', |
| 595 | + 'wf' => 'Wallis and Futuna', |
| 596 | + 'eh' => 'Western Sahara', |
| 597 | + 'ye' => 'Yemen', |
| 598 | + 'zm' => 'Zambia', |
| 599 | + 'zw' => 'Zimbabwe' |
600 | 600 | ); |
Index: trunk/wikimania/wmreg/includes/notinuse/language_de.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => 'Informationen zur Person', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>Daten zur persönlichen Identifizierung</strong></p> |
14 | | - <p>Bitte fülle das Formular mit deinen persönlichen Daten korrekt aus.</p> |
| 13 | +' <p><strong>Daten zur persönlichen Identifizierung</strong></p> |
| 14 | + <p>Bitte fülle das Formular mit deinen persönlichen Daten korrekt aus.</p> |
15 | 15 | ', |
16 | 16 | 'egy' => 'Bist du ein Staatsbürger von Ägypten?', |
17 | 17 | 'egy1' => 'Ja, bin ich. (Bitte schreibe deine nationale ID-Nummer und deinen Namen in die folgenden Felder)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>Sprachkenntnisse</strong></p>', |
| 37 | +' <p><strong>Sprachkenntnisse</strong></p>', |
38 | 38 | 'langn' => 'Muttersprache', |
39 | 39 | 'lang' => 'Kenntnisstand', |
40 | 40 | 'select_lang' => 'Wähle die Sprache aus', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => 'Kenntnisstand in Sprache 3', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>Wikimedia-Projekt und Account(s) mit E-Mail-Funktion</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>Deine Email-Daten werden nur für die Registrierung sowie für dringende Nachrichten über die Wikimania 2008 benutzt.</li> |
60 | | - </ul> |
| 57 | +' <p><strong>Wikimedia-Projekt und Account(s) mit E-Mail-Funktion</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>Deine Email-Daten werden nur für die Registrierung sowie für dringende Nachrichten über die Wikimania 2008 benutzt.</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'Bevorzugter Benutzername auf Wikimedia-Projekten', |
63 | 63 | 'email' => 'Deine Emailadresse', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => 'Teilnahme', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>Teilnahme, Namensschild und Verschiedenes</strong></p> |
69 | | - <p>Für eine bessere Vorbereitung der Unterbringung, Veranstaltungspläne und anderer Dinge, informiere uns bitte über deine Wünsche in den folgenden Feldern.</p> |
| 68 | +' <p><strong>Teilnahme, Namensschild und Verschiedenes</strong></p> |
| 69 | + <p>Für eine bessere Vorbereitung der Unterbringung, Veranstaltungspläne und anderer Dinge, informiere uns bitte über deine Wünsche in den folgenden Feldern.</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => 'Datum der Teilnahme', |
72 | 72 | 'join1' => '17. Juli', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => ' Bitte erläutere, wie das Organisationsteam dir mit Visumproblemen helfen kann. (auf <strong>Arabisch</strong> oder <strong>Englisch</strong>)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>Unterbringung</strong></p> |
104 | | - <p>Wir haben für dich zwei verfügbare Auswahlmöglichkeiten bezüglich der Unterbringung, du kannst zwischen zwei Hotels im Doppelzimmer wählen. Oder du kannst in den Schlafräumen des Saint-Marc-Colleges übernachten. |
| 103 | +' <p><strong>Unterbringung</strong></p> |
| 104 | + <p>Wir haben für dich zwei verfügbare Auswahlmöglichkeiten bezüglich der Unterbringung, du kannst zwischen zwei Hotels im Doppelzimmer wählen. Oder du kannst in den Schlafräumen des Saint-Marc-Colleges übernachten. |
105 | 105 | Bitte lies vor der Registrierung die genauen Details zu Örtlichkeiten und Eigenschaften der Optionen auf <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>der offiziellen Webseite der Wikimania</a>.</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => 'Bevorzugtes Hotel.', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => 'Mir egal', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>Bezahlung</strong></p> |
125 | | - <p>Du kannst deinen PayPal-Account belasten oder mit deiner Kreditkarte über PayPal bezahlen: <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 Länder / Regionen</a> (Ägypten nicht eingeschlossen) oder über eine Überweisung oder direkte Einzahlung auf das Bankkonto des Organisationsteams in Alexandria. Achtung: Die Möglichkeit der PayPal-Zahlung wird deaktiviert, wenn du Ägypter bist.</p> |
| 124 | +' <p><strong>Bezahlung</strong></p> |
| 125 | + <p>Du kannst deinen PayPal-Account belasten oder mit deiner Kreditkarte über PayPal bezahlen: <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 Länder / Regionen</a> (Ägypten nicht eingeschlossen) oder über eine Überweisung oder direkte Einzahlung auf das Bankkonto des Organisationsteams in Alexandria. Achtung: Die Möglichkeit der PayPal-Zahlung wird deaktiviert, wenn du Ägypter bist.</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => 'Art der Bezahlung', |
— | — | @@ -209,245 +209,245 @@ |
210 | 210 | ); |
211 | 211 | |
212 | 212 | $lang_countries = array( |
213 | | - 'af' => 'Afghanistan', |
214 | | - 'ax' => 'Aland Islands', |
215 | | - 'al' => 'Albania', |
216 | | - 'dz' => 'Algeria', |
217 | | - 'as' => 'American Samoa', |
218 | | - 'ad' => 'Andorra', |
219 | | - 'ao' => 'Angola', |
220 | | - 'ai' => 'Anguilla', |
221 | | - 'aq' => 'Antarctica', |
222 | | - 'ag' => 'Antigua and Barbuda', |
223 | | - 'ar' => 'Argentina', |
224 | | - 'am' => 'Armenia', |
225 | | - 'aw' => 'Aruba', |
226 | | - 'au' => 'Australia', |
227 | | - 'at' => 'Austria', |
228 | | - 'az' => 'Azerbaijan', |
229 | | - 'bs' => 'Bahamas', |
230 | | - 'bh' => 'Bahrain', |
231 | | - 'bd' => 'Bangladesh', |
232 | | - 'bb' => 'Barbados', |
233 | | - 'by' => 'Belarus', |
234 | | - 'be' => 'Belgium', |
235 | | - 'bz' => 'Belize', |
236 | | - 'bj' => 'Benin', |
237 | | - 'bm' => 'Bermuda', |
238 | | - 'bt' => 'Bhutan', |
239 | | - 'bo' => 'Bolivia', |
240 | | - 'ba' => 'Bosnia and Herzegovina', |
241 | | - 'bw' => 'Botswana', |
242 | | - 'bv' => 'Bouvet Island', |
243 | | - 'br' => 'Brazil', |
244 | | - 'io' => 'British Indian Ocean Territory', |
245 | | - 'bn' => 'Brunei Darussalam', |
246 | | - 'bg' => 'Bulgaria', |
247 | | - 'bf' => 'Burkina Faso', |
248 | | - 'mm' => 'Burma (Myanmar)', |
249 | | - 'bi' => 'Burundi', |
250 | | - 'kh' => 'Cambodia', |
251 | | - 'cm' => 'Cameroon', |
252 | | - 'ca' => 'Canada', |
253 | | - 'cv' => 'Cape Verde', |
254 | | - 'ky' => 'Cayman Islands', |
255 | | - 'cf' => 'Central African Republic', |
256 | | - 'td' => 'Chad', |
257 | | - 'cl' => 'Chile', |
258 | | - 'hk' => 'Hong Kong SAR', |
259 | | - 'cn' => 'People\'s Republic of China', |
260 | | - 'tw' => 'Republic of China (Taiwan)', |
261 | | - 'cx' => 'Christmas Island', |
262 | | - 'cc' => 'Cocos (keeling) Islands', |
263 | | - 'co' => 'Colombia', |
264 | | - 'km' => 'Comoros', |
265 | | - 'cg' => 'Congo', |
266 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
267 | | - 'ck' => 'Cook Islands', |
268 | | - 'cr' => 'Costa Rica', |
269 | | - 'ci' => 'Cote D\'ivoire', |
270 | | - 'hr' => 'Croatia', |
271 | | - 'cu' => 'Cuba', |
272 | | - 'cy' => 'Cyprus', |
273 | | - 'cz' => 'Czech Republic', |
274 | | - 'dk' => 'Denmark', |
275 | | - 'dj' => 'Djibouti', |
276 | | - 'dm' => 'Dominica', |
277 | | - 'do' => 'Dominican Republic', |
278 | | - 'ec' => 'Ecuador', |
279 | | - 'eg' => 'Egypt', |
280 | | - 'sv' => 'El Salvador', |
281 | | - 'gq' => 'Equatorial Guinea', |
282 | | - 'er' => 'Eritrea', |
283 | | - 'ee' => 'Estonia', |
284 | | - 'et' => 'Ethiopia', |
285 | | - 'fk' => 'Falkland Islands (malvinas)', |
286 | | - 'fo' => 'Faroe Islands', |
287 | | - 'fj' => 'Fiji', |
288 | | - 'fi' => 'Finland', |
289 | | - 'fr' => 'France', |
290 | | - 'gf' => 'French Guiana', |
291 | | - 'pf' => 'French Polynesia', |
292 | | - 'tf' => 'French Southern Territories', |
293 | | - 'ga' => 'Gabon', |
294 | | - 'gm' => 'Gambia', |
295 | | - 'ge' => 'Georgia', |
296 | | - 'de' => 'Germany', |
297 | | - 'gh' => 'Ghana', |
298 | | - 'gi' => 'Gibraltar', |
299 | | - 'gr' => 'Greece', |
300 | | - 'gl' => 'Greenland', |
301 | | - 'gd' => 'Grenada', |
302 | | - 'gp' => 'Guadeloupe', |
303 | | - 'gu' => 'Guam', |
304 | | - 'gt' => 'Guatemala', |
305 | | - 'gn' => 'Guinea', |
306 | | - 'gw' => 'Guinea-Bissau', |
307 | | - 'gy' => 'Guyana', |
308 | | - 'ht' => 'Haiti', |
309 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
310 | | - 'va' => 'Holy See (Vatican City)', |
311 | | - 'hn' => 'Honduras', |
312 | | - 'hu' => 'Hungary', |
313 | | - 'is' => 'Iceland', |
314 | | - 'in' => 'India', |
315 | | - 'id' => 'Indonesia', |
316 | | - 'ir' => 'Iran, Islamic Republic of', |
317 | | - 'iq' => 'Iraq', |
318 | | - 'ie' => 'Ireland', |
319 | | - 'il' => 'Israel', |
320 | | - 'it' => 'Italy', |
321 | | - 'jm' => 'Jamaica', |
322 | | - 'jp' => 'Japan', |
323 | | - 'jo' => 'Jordan', |
324 | | - 'kz' => 'Kazakhstan', |
325 | | - 'ke' => 'Kenya', |
326 | | - 'ki' => 'Kiribati', |
327 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
328 | | - 'kr' => 'Republic of Korea', |
329 | | - 'kw' => 'Kuwait', |
330 | | - 'kg' => 'Kyrgyzstan', |
331 | | - 'la' => 'Lao People\'s Democratic Republic', |
332 | | - 'lv' => 'Latvia', |
333 | | - 'lb' => 'Lebanon', |
334 | | - 'ls' => 'Lesotho', |
335 | | - 'lr' => 'Liberia', |
336 | | - 'ly' => 'Libyan Arab Jamahiriya', |
337 | | - 'li' => 'Liechtenstein', |
338 | | - 'lt' => 'Lithuania', |
339 | | - 'lu' => 'Luxembourg', |
340 | | - 'mo' => 'Macao', |
341 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
342 | | - 'mg' => 'Madagascar', |
343 | | - 'mw' => 'Malawi', |
344 | | - 'my' => 'Malaysia', |
345 | | - 'mv' => 'Maldives', |
346 | | - 'ml' => 'Mali', |
347 | | - 'mt' => 'Malta', |
348 | | - 'mh' => 'Marshall Islands', |
349 | | - 'mq' => 'Martinique', |
350 | | - 'mr' => 'Mauritania', |
351 | | - 'mu' => 'Mauritius', |
352 | | - 'yt' => 'Mayotte', |
353 | | - 'mx' => 'Mexico', |
354 | | - 'fm' => 'Micronesia, Federated States of', |
355 | | - 'md' => 'Moldova, Republic of', |
356 | | - 'mc' => 'Monaco SAR', |
357 | | - 'mn' => 'Mongolia', |
358 | | - 'me' => 'Montenegro', |
359 | | - 'ms' => 'Montserrat', |
360 | | - 'ma' => 'Morocco', |
361 | | - 'mz' => 'Mozambique', |
362 | | - 'na' => 'Namibia', |
363 | | - 'nr' => 'Nauru', |
364 | | - 'np' => 'Nepal', |
365 | | - 'nl' => 'Netherlands', |
366 | | - 'an' => 'Netherlands Antilles', |
367 | | - 'nc' => 'New Caledonia', |
368 | | - 'nz' => 'New Zealand', |
369 | | - 'ni' => 'Nicaragua', |
370 | | - 'ne' => 'Niger', |
371 | | - 'ng' => 'Nigeria', |
372 | | - 'nu' => 'Niue', |
373 | | - 'nf' => 'Norfolk Island', |
374 | | - 'mp' => 'Northern Mariana Islands', |
375 | | - 'no' => 'Norway', |
376 | | - 'om' => 'Oman', |
377 | | - 'pk' => 'Pakistan', |
378 | | - 'pw' => 'Palau', |
379 | | - 'ps' => 'Palestinian Territory', |
380 | | - 'pa' => 'Panama', |
381 | | - 'pg' => 'Papua New Guinea', |
382 | | - 'py' => 'Paraguay', |
383 | | - 'pe' => 'Peru', |
384 | | - 'ph' => 'Philippines', |
385 | | - 'pn' => 'Pitcairn', |
386 | | - 'pl' => 'Poland', |
387 | | - 'pt' => 'Portugal', |
388 | | - 'pr' => 'Puerto Rico', |
389 | | - 'qa' => 'Qatar', |
390 | | - 're' => 'Reunion', |
391 | | - 'ro' => 'Romania', |
392 | | - 'ru' => 'Russian Federation', |
393 | | - 'rw' => 'Rwanda', |
394 | | - 'sh' => 'Saint Helena', |
395 | | - 'kn' => 'Saint Kitts and Nevis', |
396 | | - 'lc' => 'Saint Lucia', |
397 | | - 'pm' => 'Saint Pierre and Miquelon', |
398 | | - 'vc' => 'Saint Vincent and the Grenadines', |
399 | | - 'ws' => 'Samoa', |
400 | | - 'sm' => 'San Marino', |
401 | | - 'st' => 'Sao Tome and Principe', |
402 | | - 'sa' => 'Saudi Arabia', |
403 | | - 'sn' => 'Senegal', |
404 | | - 'rs' => 'Serbia', |
405 | | - 'sc' => 'Seychelles', |
406 | | - 'sl' => 'Sierra Leone', |
407 | | - 'sg' => 'Singapore', |
408 | | - 'sk' => 'Slovakia', |
409 | | - 'si' => 'Slovenia', |
410 | | - 'sb' => 'Solomon Islands', |
411 | | - 'so' => 'Somalia', |
412 | | - 'za' => 'South Africa', |
413 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
414 | | - 'es' => 'Spain', |
415 | | - 'lk' => 'Sri Lanka', |
416 | | - 'sd' => 'Sudan', |
417 | | - 'sr' => 'Suriname', |
418 | | - 'sj' => 'Svalbard and Jan Mayen', |
419 | | - 'sz' => 'Swaziland', |
420 | | - 'se' => 'Sweden', |
421 | | - 'ch' => 'Switzerland', |
422 | | - 'sy' => 'Syrian Arab Republic', |
423 | | - 'tj' => 'Tajikistan', |
424 | | - 'tz' => 'Tanzania, United Republic of', |
425 | | - 'th' => 'Thailand', |
426 | | - 'tl' => 'Timor-leste', |
427 | | - 'tg' => 'Togo', |
428 | | - 'tk' => 'Tokelau', |
429 | | - 'to' => 'Tonga', |
430 | | - 'tt' => 'Trinidad and Tobago', |
431 | | - 'tn' => 'Tunisia', |
432 | | - 'tr' => 'Turkey', |
433 | | - 'tm' => 'Turkmenistan', |
434 | | - 'tc' => 'Turks and Caicos Islands', |
435 | | - 'tv' => 'Tuvalu', |
436 | | - 'ug' => 'Uganda', |
437 | | - 'ua' => 'Ukraine', |
438 | | - 'ae' => 'United Arab Emirates', |
439 | | - 'gb' => 'United Kingdom', |
440 | | - 'us' => 'United States', |
441 | | - 'um' => 'United States Minor Outlying Islands', |
442 | | - 'uy' => 'Uruguay', |
443 | | - 'uz' => 'Uzbekistan', |
444 | | - 'vu' => 'Vanuatu', |
445 | | - 've' => 'Venezuela', |
446 | | - 'vn' => 'Viet Nam', |
447 | | - 'vg' => 'Virgin Islands, British', |
448 | | - 'vi' => 'Virgin Islands, U.S.', |
449 | | - 'wf' => 'Wallis and Futuna', |
450 | | - 'eh' => 'Western Sahara', |
451 | | - 'ye' => 'Yemen', |
452 | | - 'zm' => 'Zambia', |
453 | | - 'zw' => 'Zimbabwe' |
| 213 | + 'af' => 'Afghanistan', |
| 214 | + 'ax' => 'Aland Islands', |
| 215 | + 'al' => 'Albania', |
| 216 | + 'dz' => 'Algeria', |
| 217 | + 'as' => 'American Samoa', |
| 218 | + 'ad' => 'Andorra', |
| 219 | + 'ao' => 'Angola', |
| 220 | + 'ai' => 'Anguilla', |
| 221 | + 'aq' => 'Antarctica', |
| 222 | + 'ag' => 'Antigua and Barbuda', |
| 223 | + 'ar' => 'Argentina', |
| 224 | + 'am' => 'Armenia', |
| 225 | + 'aw' => 'Aruba', |
| 226 | + 'au' => 'Australia', |
| 227 | + 'at' => 'Austria', |
| 228 | + 'az' => 'Azerbaijan', |
| 229 | + 'bs' => 'Bahamas', |
| 230 | + 'bh' => 'Bahrain', |
| 231 | + 'bd' => 'Bangladesh', |
| 232 | + 'bb' => 'Barbados', |
| 233 | + 'by' => 'Belarus', |
| 234 | + 'be' => 'Belgium', |
| 235 | + 'bz' => 'Belize', |
| 236 | + 'bj' => 'Benin', |
| 237 | + 'bm' => 'Bermuda', |
| 238 | + 'bt' => 'Bhutan', |
| 239 | + 'bo' => 'Bolivia', |
| 240 | + 'ba' => 'Bosnia and Herzegovina', |
| 241 | + 'bw' => 'Botswana', |
| 242 | + 'bv' => 'Bouvet Island', |
| 243 | + 'br' => 'Brazil', |
| 244 | + 'io' => 'British Indian Ocean Territory', |
| 245 | + 'bn' => 'Brunei Darussalam', |
| 246 | + 'bg' => 'Bulgaria', |
| 247 | + 'bf' => 'Burkina Faso', |
| 248 | + 'mm' => 'Burma (Myanmar)', |
| 249 | + 'bi' => 'Burundi', |
| 250 | + 'kh' => 'Cambodia', |
| 251 | + 'cm' => 'Cameroon', |
| 252 | + 'ca' => 'Canada', |
| 253 | + 'cv' => 'Cape Verde', |
| 254 | + 'ky' => 'Cayman Islands', |
| 255 | + 'cf' => 'Central African Republic', |
| 256 | + 'td' => 'Chad', |
| 257 | + 'cl' => 'Chile', |
| 258 | + 'hk' => 'Hong Kong SAR', |
| 259 | + 'cn' => 'People\'s Republic of China', |
| 260 | + 'tw' => 'Republic of China (Taiwan)', |
| 261 | + 'cx' => 'Christmas Island', |
| 262 | + 'cc' => 'Cocos (keeling) Islands', |
| 263 | + 'co' => 'Colombia', |
| 264 | + 'km' => 'Comoros', |
| 265 | + 'cg' => 'Congo', |
| 266 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 267 | + 'ck' => 'Cook Islands', |
| 268 | + 'cr' => 'Costa Rica', |
| 269 | + 'ci' => 'Cote D\'ivoire', |
| 270 | + 'hr' => 'Croatia', |
| 271 | + 'cu' => 'Cuba', |
| 272 | + 'cy' => 'Cyprus', |
| 273 | + 'cz' => 'Czech Republic', |
| 274 | + 'dk' => 'Denmark', |
| 275 | + 'dj' => 'Djibouti', |
| 276 | + 'dm' => 'Dominica', |
| 277 | + 'do' => 'Dominican Republic', |
| 278 | + 'ec' => 'Ecuador', |
| 279 | + 'eg' => 'Egypt', |
| 280 | + 'sv' => 'El Salvador', |
| 281 | + 'gq' => 'Equatorial Guinea', |
| 282 | + 'er' => 'Eritrea', |
| 283 | + 'ee' => 'Estonia', |
| 284 | + 'et' => 'Ethiopia', |
| 285 | + 'fk' => 'Falkland Islands (malvinas)', |
| 286 | + 'fo' => 'Faroe Islands', |
| 287 | + 'fj' => 'Fiji', |
| 288 | + 'fi' => 'Finland', |
| 289 | + 'fr' => 'France', |
| 290 | + 'gf' => 'French Guiana', |
| 291 | + 'pf' => 'French Polynesia', |
| 292 | + 'tf' => 'French Southern Territories', |
| 293 | + 'ga' => 'Gabon', |
| 294 | + 'gm' => 'Gambia', |
| 295 | + 'ge' => 'Georgia', |
| 296 | + 'de' => 'Germany', |
| 297 | + 'gh' => 'Ghana', |
| 298 | + 'gi' => 'Gibraltar', |
| 299 | + 'gr' => 'Greece', |
| 300 | + 'gl' => 'Greenland', |
| 301 | + 'gd' => 'Grenada', |
| 302 | + 'gp' => 'Guadeloupe', |
| 303 | + 'gu' => 'Guam', |
| 304 | + 'gt' => 'Guatemala', |
| 305 | + 'gn' => 'Guinea', |
| 306 | + 'gw' => 'Guinea-Bissau', |
| 307 | + 'gy' => 'Guyana', |
| 308 | + 'ht' => 'Haiti', |
| 309 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 310 | + 'va' => 'Holy See (Vatican City)', |
| 311 | + 'hn' => 'Honduras', |
| 312 | + 'hu' => 'Hungary', |
| 313 | + 'is' => 'Iceland', |
| 314 | + 'in' => 'India', |
| 315 | + 'id' => 'Indonesia', |
| 316 | + 'ir' => 'Iran, Islamic Republic of', |
| 317 | + 'iq' => 'Iraq', |
| 318 | + 'ie' => 'Ireland', |
| 319 | + 'il' => 'Israel', |
| 320 | + 'it' => 'Italy', |
| 321 | + 'jm' => 'Jamaica', |
| 322 | + 'jp' => 'Japan', |
| 323 | + 'jo' => 'Jordan', |
| 324 | + 'kz' => 'Kazakhstan', |
| 325 | + 'ke' => 'Kenya', |
| 326 | + 'ki' => 'Kiribati', |
| 327 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 328 | + 'kr' => 'Republic of Korea', |
| 329 | + 'kw' => 'Kuwait', |
| 330 | + 'kg' => 'Kyrgyzstan', |
| 331 | + 'la' => 'Lao People\'s Democratic Republic', |
| 332 | + 'lv' => 'Latvia', |
| 333 | + 'lb' => 'Lebanon', |
| 334 | + 'ls' => 'Lesotho', |
| 335 | + 'lr' => 'Liberia', |
| 336 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 337 | + 'li' => 'Liechtenstein', |
| 338 | + 'lt' => 'Lithuania', |
| 339 | + 'lu' => 'Luxembourg', |
| 340 | + 'mo' => 'Macao', |
| 341 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 342 | + 'mg' => 'Madagascar', |
| 343 | + 'mw' => 'Malawi', |
| 344 | + 'my' => 'Malaysia', |
| 345 | + 'mv' => 'Maldives', |
| 346 | + 'ml' => 'Mali', |
| 347 | + 'mt' => 'Malta', |
| 348 | + 'mh' => 'Marshall Islands', |
| 349 | + 'mq' => 'Martinique', |
| 350 | + 'mr' => 'Mauritania', |
| 351 | + 'mu' => 'Mauritius', |
| 352 | + 'yt' => 'Mayotte', |
| 353 | + 'mx' => 'Mexico', |
| 354 | + 'fm' => 'Micronesia, Federated States of', |
| 355 | + 'md' => 'Moldova, Republic of', |
| 356 | + 'mc' => 'Monaco SAR', |
| 357 | + 'mn' => 'Mongolia', |
| 358 | + 'me' => 'Montenegro', |
| 359 | + 'ms' => 'Montserrat', |
| 360 | + 'ma' => 'Morocco', |
| 361 | + 'mz' => 'Mozambique', |
| 362 | + 'na' => 'Namibia', |
| 363 | + 'nr' => 'Nauru', |
| 364 | + 'np' => 'Nepal', |
| 365 | + 'nl' => 'Netherlands', |
| 366 | + 'an' => 'Netherlands Antilles', |
| 367 | + 'nc' => 'New Caledonia', |
| 368 | + 'nz' => 'New Zealand', |
| 369 | + 'ni' => 'Nicaragua', |
| 370 | + 'ne' => 'Niger', |
| 371 | + 'ng' => 'Nigeria', |
| 372 | + 'nu' => 'Niue', |
| 373 | + 'nf' => 'Norfolk Island', |
| 374 | + 'mp' => 'Northern Mariana Islands', |
| 375 | + 'no' => 'Norway', |
| 376 | + 'om' => 'Oman', |
| 377 | + 'pk' => 'Pakistan', |
| 378 | + 'pw' => 'Palau', |
| 379 | + 'ps' => 'Palestinian Territory', |
| 380 | + 'pa' => 'Panama', |
| 381 | + 'pg' => 'Papua New Guinea', |
| 382 | + 'py' => 'Paraguay', |
| 383 | + 'pe' => 'Peru', |
| 384 | + 'ph' => 'Philippines', |
| 385 | + 'pn' => 'Pitcairn', |
| 386 | + 'pl' => 'Poland', |
| 387 | + 'pt' => 'Portugal', |
| 388 | + 'pr' => 'Puerto Rico', |
| 389 | + 'qa' => 'Qatar', |
| 390 | + 're' => 'Reunion', |
| 391 | + 'ro' => 'Romania', |
| 392 | + 'ru' => 'Russian Federation', |
| 393 | + 'rw' => 'Rwanda', |
| 394 | + 'sh' => 'Saint Helena', |
| 395 | + 'kn' => 'Saint Kitts and Nevis', |
| 396 | + 'lc' => 'Saint Lucia', |
| 397 | + 'pm' => 'Saint Pierre and Miquelon', |
| 398 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 399 | + 'ws' => 'Samoa', |
| 400 | + 'sm' => 'San Marino', |
| 401 | + 'st' => 'Sao Tome and Principe', |
| 402 | + 'sa' => 'Saudi Arabia', |
| 403 | + 'sn' => 'Senegal', |
| 404 | + 'rs' => 'Serbia', |
| 405 | + 'sc' => 'Seychelles', |
| 406 | + 'sl' => 'Sierra Leone', |
| 407 | + 'sg' => 'Singapore', |
| 408 | + 'sk' => 'Slovakia', |
| 409 | + 'si' => 'Slovenia', |
| 410 | + 'sb' => 'Solomon Islands', |
| 411 | + 'so' => 'Somalia', |
| 412 | + 'za' => 'South Africa', |
| 413 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 414 | + 'es' => 'Spain', |
| 415 | + 'lk' => 'Sri Lanka', |
| 416 | + 'sd' => 'Sudan', |
| 417 | + 'sr' => 'Suriname', |
| 418 | + 'sj' => 'Svalbard and Jan Mayen', |
| 419 | + 'sz' => 'Swaziland', |
| 420 | + 'se' => 'Sweden', |
| 421 | + 'ch' => 'Switzerland', |
| 422 | + 'sy' => 'Syrian Arab Republic', |
| 423 | + 'tj' => 'Tajikistan', |
| 424 | + 'tz' => 'Tanzania, United Republic of', |
| 425 | + 'th' => 'Thailand', |
| 426 | + 'tl' => 'Timor-leste', |
| 427 | + 'tg' => 'Togo', |
| 428 | + 'tk' => 'Tokelau', |
| 429 | + 'to' => 'Tonga', |
| 430 | + 'tt' => 'Trinidad and Tobago', |
| 431 | + 'tn' => 'Tunisia', |
| 432 | + 'tr' => 'Turkey', |
| 433 | + 'tm' => 'Turkmenistan', |
| 434 | + 'tc' => 'Turks and Caicos Islands', |
| 435 | + 'tv' => 'Tuvalu', |
| 436 | + 'ug' => 'Uganda', |
| 437 | + 'ua' => 'Ukraine', |
| 438 | + 'ae' => 'United Arab Emirates', |
| 439 | + 'gb' => 'United Kingdom', |
| 440 | + 'us' => 'United States', |
| 441 | + 'um' => 'United States Minor Outlying Islands', |
| 442 | + 'uy' => 'Uruguay', |
| 443 | + 'uz' => 'Uzbekistan', |
| 444 | + 'vu' => 'Vanuatu', |
| 445 | + 've' => 'Venezuela', |
| 446 | + 'vn' => 'Viet Nam', |
| 447 | + 'vg' => 'Virgin Islands, British', |
| 448 | + 'vi' => 'Virgin Islands, U.S.', |
| 449 | + 'wf' => 'Wallis and Futuna', |
| 450 | + 'eh' => 'Western Sahara', |
| 451 | + 'ye' => 'Yemen', |
| 452 | + 'zm' => 'Zambia', |
| 453 | + 'zw' => 'Zimbabwe' |
454 | 454 | ); |
Index: trunk/wikimania/wmreg/includes/notinuse/language_zh-hans.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => '个人资料', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>个人身份资料</strong></p> |
14 | | - <p>请确保填上正确的个人资料</p> |
| 13 | +' <p><strong>个人身份资料</strong></p> |
| 14 | + <p>请确保填上正确的个人资料</p> |
15 | 15 | ', |
16 | 16 | 'egy' => '你是否埃及阿拉伯共和国的公民?', |
17 | 17 | 'egy1' => '是(请在以下栏位填上你的国民身分号码和姓名。)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>语言</strong></p>', |
| 37 | +' <p><strong>语言</strong></p>', |
38 | 38 | 'langn' => '母语', |
39 | 39 | 'lang' => '熟练程度', |
40 | 40 | 'select_lang' => '选择语言', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => '第三语言的熟练程度', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>参与的维基计划和电邮帐戶</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>年会筹备小组将只会在注册相关程序和紧急通知时使用你的电邮地址资讯。</li> |
60 | | - </ul> |
| 57 | +' <p><strong>参与的维基计划和电邮帐戶</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>年会筹备小组将只会在注册相关程序和紧急通知时使用你的电邮地址资讯。</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => '意欲使用的维基计划帐戶名称。', |
63 | 63 | 'email' => '电邮地址', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => '参与情况', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>参与情况丶名牌资料和其他</strong></p> |
69 | | - <p>为了更好安排住宿丶议程跟进和相关方面的服务,我们希望你告诉我们下列的资料。</p> |
| 68 | +' <p><strong>参与情况丶名牌资料和其他</strong></p> |
| 69 | + <p>为了更好安排住宿丶议程跟进和相关方面的服务,我们希望你告诉我们下列的资料。</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => '报名参与的日子', |
72 | 72 | 'join1' => '7月17日', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => '请说明筹备小组可以提供什么协助(请使用<strong>阿拉伯语</strong>或<strong>英语</strong>填写)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>住宿</strong></p> |
104 | | - <p>我们提供两种选择。你可以选择入住酒店,或入住圣马可书院(Collège Saint Marc)的宿舍。 |
| 103 | +' <p><strong>住宿</strong></p> |
| 104 | + <p>我们提供两种选择。你可以选择入住酒店,或入住圣马可书院(Collège Saint Marc)的宿舍。 |
105 | 105 | 请查阅<a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>该页面上的资讯</a>,取得住宿地点的实际位置和其附属设施的资料,以便报名时申明你的决定。</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => '希望入住酒店', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => '没有所谓', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>付款</strong></p> |
125 | | - <p>若你居住在<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">这里所列出的103个国家/地区</a> (埃及除外),你可以通过PayPal,以借帐或信用卡付款。你也可以选择汇款或将款项直接存入亚力山卓筹备小组的银行户口。请注意:来自埃及的申请人将不能使用PayPal付款。</p> |
| 124 | +' <p><strong>付款</strong></p> |
| 125 | + <p>若你居住在<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">这里所列出的103个国家/地区</a> (埃及除外),你可以通过PayPal,以借帐或信用卡付款。你也可以选择汇款或将款项直接存入亚力山卓筹备小组的银行户口。请注意:来自埃及的申请人将不能使用PayPal付款。</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => '付款方法', |
— | — | @@ -210,245 +210,245 @@ |
211 | 211 | ); |
212 | 212 | |
213 | 213 | $lang_countries = array( |
214 | | - 'af' => 'Afghanistan', |
215 | | - 'ax' => 'Aland Islands', |
216 | | - 'al' => 'Albania', |
217 | | - 'dz' => 'Algeria', |
218 | | - 'as' => 'American Samoa', |
219 | | - 'ad' => 'Andorra', |
220 | | - 'ao' => 'Angola', |
221 | | - 'ai' => 'Anguilla', |
222 | | - 'aq' => 'Antarctica', |
223 | | - 'ag' => 'Antigua and Barbuda', |
224 | | - 'ar' => 'Argentina', |
225 | | - 'am' => 'Armenia', |
226 | | - 'aw' => 'Aruba', |
227 | | - 'au' => 'Australia', |
228 | | - 'at' => 'Austria', |
229 | | - 'az' => 'Azerbaijan', |
230 | | - 'bs' => 'Bahamas', |
231 | | - 'bh' => 'Bahrain', |
232 | | - 'bd' => 'Bangladesh', |
233 | | - 'bb' => 'Barbados', |
234 | | - 'by' => 'Belarus', |
235 | | - 'be' => 'Belgium', |
236 | | - 'bz' => 'Belize', |
237 | | - 'bj' => 'Benin', |
238 | | - 'bm' => 'Bermuda', |
239 | | - 'bt' => 'Bhutan', |
240 | | - 'bo' => 'Bolivia', |
241 | | - 'ba' => 'Bosnia and Herzegovina', |
242 | | - 'bw' => 'Botswana', |
243 | | - 'bv' => 'Bouvet Island', |
244 | | - 'br' => 'Brazil', |
245 | | - 'io' => 'British Indian Ocean Territory', |
246 | | - 'bn' => 'Brunei Darussalam', |
247 | | - 'bg' => 'Bulgaria', |
248 | | - 'bf' => 'Burkina Faso', |
249 | | - 'mm' => 'Burma (Myanmar)', |
250 | | - 'bi' => 'Burundi', |
251 | | - 'kh' => 'Cambodia', |
252 | | - 'cm' => 'Cameroon', |
253 | | - 'ca' => 'Canada', |
254 | | - 'cv' => 'Cape Verde', |
255 | | - 'ky' => 'Cayman Islands', |
256 | | - 'cf' => 'Central African Republic', |
257 | | - 'td' => 'Chad', |
258 | | - 'cl' => 'Chile', |
259 | | - 'hk' => 'Hong Kong SAR', |
260 | | - 'cn' => 'People\'s Republic of China', |
261 | | - 'tw' => 'Republic of China (Taiwan)', |
262 | | - 'cx' => 'Christmas Island', |
263 | | - 'cc' => 'Cocos (keeling) Islands', |
264 | | - 'co' => 'Colombia', |
265 | | - 'km' => 'Comoros', |
266 | | - 'cg' => 'Congo', |
267 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
268 | | - 'ck' => 'Cook Islands', |
269 | | - 'cr' => 'Costa Rica', |
270 | | - 'ci' => 'Cote D\'ivoire', |
271 | | - 'hr' => 'Croatia', |
272 | | - 'cu' => 'Cuba', |
273 | | - 'cy' => 'Cyprus', |
274 | | - 'cz' => 'Czech Republic', |
275 | | - 'dk' => 'Denmark', |
276 | | - 'dj' => 'Djibouti', |
277 | | - 'dm' => 'Dominica', |
278 | | - 'do' => 'Dominican Republic', |
279 | | - 'ec' => 'Ecuador', |
280 | | - 'eg' => 'Egypt', |
281 | | - 'sv' => 'El Salvador', |
282 | | - 'gq' => 'Equatorial Guinea', |
283 | | - 'er' => 'Eritrea', |
284 | | - 'ee' => 'Estonia', |
285 | | - 'et' => 'Ethiopia', |
286 | | - 'fk' => 'Falkland Islands (malvinas)', |
287 | | - 'fo' => 'Faroe Islands', |
288 | | - 'fj' => 'Fiji', |
289 | | - 'fi' => 'Finland', |
290 | | - 'fr' => 'France', |
291 | | - 'gf' => 'French Guiana', |
292 | | - 'pf' => 'French Polynesia', |
293 | | - 'tf' => 'French Southern Territories', |
294 | | - 'ga' => 'Gabon', |
295 | | - 'gm' => 'Gambia', |
296 | | - 'ge' => 'Georgia', |
297 | | - 'de' => 'Germany', |
298 | | - 'gh' => 'Ghana', |
299 | | - 'gi' => 'Gibraltar', |
300 | | - 'gr' => 'Greece', |
301 | | - 'gl' => 'Greenland', |
302 | | - 'gd' => 'Grenada', |
303 | | - 'gp' => 'Guadeloupe', |
304 | | - 'gu' => 'Guam', |
305 | | - 'gt' => 'Guatemala', |
306 | | - 'gn' => 'Guinea', |
307 | | - 'gw' => 'Guinea-Bissau', |
308 | | - 'gy' => 'Guyana', |
309 | | - 'ht' => 'Haiti', |
310 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
311 | | - 'va' => 'Holy See (Vatican City)', |
312 | | - 'hn' => 'Honduras', |
313 | | - 'hu' => 'Hungary', |
314 | | - 'is' => 'Iceland', |
315 | | - 'in' => 'India', |
316 | | - 'id' => 'Indonesia', |
317 | | - 'ir' => 'Iran, Islamic Republic of', |
318 | | - 'iq' => 'Iraq', |
319 | | - 'ie' => 'Ireland', |
320 | | - 'il' => 'Israel', |
321 | | - 'it' => 'Italy', |
322 | | - 'jm' => 'Jamaica', |
323 | | - 'jp' => 'Japan', |
324 | | - 'jo' => 'Jordan', |
325 | | - 'kz' => 'Kazakhstan', |
326 | | - 'ke' => 'Kenya', |
327 | | - 'ki' => 'Kiribati', |
328 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
329 | | - 'kr' => 'Republic of Korea', |
330 | | - 'kw' => 'Kuwait', |
331 | | - 'kg' => 'Kyrgyzstan', |
332 | | - 'la' => 'Lao People\'s Democratic Republic', |
333 | | - 'lv' => 'Latvia', |
334 | | - 'lb' => 'Lebanon', |
335 | | - 'ls' => 'Lesotho', |
336 | | - 'lr' => 'Liberia', |
337 | | - 'ly' => 'Libyan Arab Jamahiriya', |
338 | | - 'li' => 'Liechtenstein', |
339 | | - 'lt' => 'Lithuania', |
340 | | - 'lu' => 'Luxembourg', |
341 | | - 'mo' => 'Macao', |
342 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
343 | | - 'mg' => 'Madagascar', |
344 | | - 'mw' => 'Malawi', |
345 | | - 'my' => 'Malaysia', |
346 | | - 'mv' => 'Maldives', |
347 | | - 'ml' => 'Mali', |
348 | | - 'mt' => 'Malta', |
349 | | - 'mh' => 'Marshall Islands', |
350 | | - 'mq' => 'Martinique', |
351 | | - 'mr' => 'Mauritania', |
352 | | - 'mu' => 'Mauritius', |
353 | | - 'yt' => 'Mayotte', |
354 | | - 'mx' => 'Mexico', |
355 | | - 'fm' => 'Micronesia, Federated States of', |
356 | | - 'md' => 'Moldova, Republic of', |
357 | | - 'mc' => 'Monaco SAR', |
358 | | - 'mn' => 'Mongolia', |
| 214 | + 'af' => 'Afghanistan', |
| 215 | + 'ax' => 'Aland Islands', |
| 216 | + 'al' => 'Albania', |
| 217 | + 'dz' => 'Algeria', |
| 218 | + 'as' => 'American Samoa', |
| 219 | + 'ad' => 'Andorra', |
| 220 | + 'ao' => 'Angola', |
| 221 | + 'ai' => 'Anguilla', |
| 222 | + 'aq' => 'Antarctica', |
| 223 | + 'ag' => 'Antigua and Barbuda', |
| 224 | + 'ar' => 'Argentina', |
| 225 | + 'am' => 'Armenia', |
| 226 | + 'aw' => 'Aruba', |
| 227 | + 'au' => 'Australia', |
| 228 | + 'at' => 'Austria', |
| 229 | + 'az' => 'Azerbaijan', |
| 230 | + 'bs' => 'Bahamas', |
| 231 | + 'bh' => 'Bahrain', |
| 232 | + 'bd' => 'Bangladesh', |
| 233 | + 'bb' => 'Barbados', |
| 234 | + 'by' => 'Belarus', |
| 235 | + 'be' => 'Belgium', |
| 236 | + 'bz' => 'Belize', |
| 237 | + 'bj' => 'Benin', |
| 238 | + 'bm' => 'Bermuda', |
| 239 | + 'bt' => 'Bhutan', |
| 240 | + 'bo' => 'Bolivia', |
| 241 | + 'ba' => 'Bosnia and Herzegovina', |
| 242 | + 'bw' => 'Botswana', |
| 243 | + 'bv' => 'Bouvet Island', |
| 244 | + 'br' => 'Brazil', |
| 245 | + 'io' => 'British Indian Ocean Territory', |
| 246 | + 'bn' => 'Brunei Darussalam', |
| 247 | + 'bg' => 'Bulgaria', |
| 248 | + 'bf' => 'Burkina Faso', |
| 249 | + 'mm' => 'Burma (Myanmar)', |
| 250 | + 'bi' => 'Burundi', |
| 251 | + 'kh' => 'Cambodia', |
| 252 | + 'cm' => 'Cameroon', |
| 253 | + 'ca' => 'Canada', |
| 254 | + 'cv' => 'Cape Verde', |
| 255 | + 'ky' => 'Cayman Islands', |
| 256 | + 'cf' => 'Central African Republic', |
| 257 | + 'td' => 'Chad', |
| 258 | + 'cl' => 'Chile', |
| 259 | + 'hk' => 'Hong Kong SAR', |
| 260 | + 'cn' => 'People\'s Republic of China', |
| 261 | + 'tw' => 'Republic of China (Taiwan)', |
| 262 | + 'cx' => 'Christmas Island', |
| 263 | + 'cc' => 'Cocos (keeling) Islands', |
| 264 | + 'co' => 'Colombia', |
| 265 | + 'km' => 'Comoros', |
| 266 | + 'cg' => 'Congo', |
| 267 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 268 | + 'ck' => 'Cook Islands', |
| 269 | + 'cr' => 'Costa Rica', |
| 270 | + 'ci' => 'Cote D\'ivoire', |
| 271 | + 'hr' => 'Croatia', |
| 272 | + 'cu' => 'Cuba', |
| 273 | + 'cy' => 'Cyprus', |
| 274 | + 'cz' => 'Czech Republic', |
| 275 | + 'dk' => 'Denmark', |
| 276 | + 'dj' => 'Djibouti', |
| 277 | + 'dm' => 'Dominica', |
| 278 | + 'do' => 'Dominican Republic', |
| 279 | + 'ec' => 'Ecuador', |
| 280 | + 'eg' => 'Egypt', |
| 281 | + 'sv' => 'El Salvador', |
| 282 | + 'gq' => 'Equatorial Guinea', |
| 283 | + 'er' => 'Eritrea', |
| 284 | + 'ee' => 'Estonia', |
| 285 | + 'et' => 'Ethiopia', |
| 286 | + 'fk' => 'Falkland Islands (malvinas)', |
| 287 | + 'fo' => 'Faroe Islands', |
| 288 | + 'fj' => 'Fiji', |
| 289 | + 'fi' => 'Finland', |
| 290 | + 'fr' => 'France', |
| 291 | + 'gf' => 'French Guiana', |
| 292 | + 'pf' => 'French Polynesia', |
| 293 | + 'tf' => 'French Southern Territories', |
| 294 | + 'ga' => 'Gabon', |
| 295 | + 'gm' => 'Gambia', |
| 296 | + 'ge' => 'Georgia', |
| 297 | + 'de' => 'Germany', |
| 298 | + 'gh' => 'Ghana', |
| 299 | + 'gi' => 'Gibraltar', |
| 300 | + 'gr' => 'Greece', |
| 301 | + 'gl' => 'Greenland', |
| 302 | + 'gd' => 'Grenada', |
| 303 | + 'gp' => 'Guadeloupe', |
| 304 | + 'gu' => 'Guam', |
| 305 | + 'gt' => 'Guatemala', |
| 306 | + 'gn' => 'Guinea', |
| 307 | + 'gw' => 'Guinea-Bissau', |
| 308 | + 'gy' => 'Guyana', |
| 309 | + 'ht' => 'Haiti', |
| 310 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 311 | + 'va' => 'Holy See (Vatican City)', |
| 312 | + 'hn' => 'Honduras', |
| 313 | + 'hu' => 'Hungary', |
| 314 | + 'is' => 'Iceland', |
| 315 | + 'in' => 'India', |
| 316 | + 'id' => 'Indonesia', |
| 317 | + 'ir' => 'Iran, Islamic Republic of', |
| 318 | + 'iq' => 'Iraq', |
| 319 | + 'ie' => 'Ireland', |
| 320 | + 'il' => 'Israel', |
| 321 | + 'it' => 'Italy', |
| 322 | + 'jm' => 'Jamaica', |
| 323 | + 'jp' => 'Japan', |
| 324 | + 'jo' => 'Jordan', |
| 325 | + 'kz' => 'Kazakhstan', |
| 326 | + 'ke' => 'Kenya', |
| 327 | + 'ki' => 'Kiribati', |
| 328 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 329 | + 'kr' => 'Republic of Korea', |
| 330 | + 'kw' => 'Kuwait', |
| 331 | + 'kg' => 'Kyrgyzstan', |
| 332 | + 'la' => 'Lao People\'s Democratic Republic', |
| 333 | + 'lv' => 'Latvia', |
| 334 | + 'lb' => 'Lebanon', |
| 335 | + 'ls' => 'Lesotho', |
| 336 | + 'lr' => 'Liberia', |
| 337 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 338 | + 'li' => 'Liechtenstein', |
| 339 | + 'lt' => 'Lithuania', |
| 340 | + 'lu' => 'Luxembourg', |
| 341 | + 'mo' => 'Macao', |
| 342 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 343 | + 'mg' => 'Madagascar', |
| 344 | + 'mw' => 'Malawi', |
| 345 | + 'my' => 'Malaysia', |
| 346 | + 'mv' => 'Maldives', |
| 347 | + 'ml' => 'Mali', |
| 348 | + 'mt' => 'Malta', |
| 349 | + 'mh' => 'Marshall Islands', |
| 350 | + 'mq' => 'Martinique', |
| 351 | + 'mr' => 'Mauritania', |
| 352 | + 'mu' => 'Mauritius', |
| 353 | + 'yt' => 'Mayotte', |
| 354 | + 'mx' => 'Mexico', |
| 355 | + 'fm' => 'Micronesia, Federated States of', |
| 356 | + 'md' => 'Moldova, Republic of', |
| 357 | + 'mc' => 'Monaco SAR', |
| 358 | + 'mn' => 'Mongolia', |
359 | 359 | 'me' => 'Montenegro', |
360 | | - 'ms' => 'Montserrat', |
361 | | - 'ma' => 'Morocco', |
362 | | - 'mz' => 'Mozambique', |
363 | | - 'na' => 'Namibia', |
364 | | - 'nr' => 'Nauru', |
365 | | - 'np' => 'Nepal', |
366 | | - 'nl' => 'Netherlands', |
367 | | - 'an' => 'Netherlands Antilles', |
368 | | - 'nc' => 'New Caledonia', |
369 | | - 'nz' => 'New Zealand', |
370 | | - 'ni' => 'Nicaragua', |
371 | | - 'ne' => 'Niger', |
372 | | - 'ng' => 'Nigeria', |
373 | | - 'nu' => 'Niue', |
374 | | - 'nf' => 'Norfolk Island', |
375 | | - 'mp' => 'Northern Mariana Islands', |
376 | | - 'no' => 'Norway', |
377 | | - 'om' => 'Oman', |
378 | | - 'pk' => 'Pakistan', |
379 | | - 'pw' => 'Palau', |
380 | | - 'ps' => 'Palestinian Territory', |
381 | | - 'pa' => 'Panama', |
382 | | - 'pg' => 'Papua New Guinea', |
383 | | - 'py' => 'Paraguay', |
384 | | - 'pe' => 'Peru', |
385 | | - 'ph' => 'Philippines', |
386 | | - 'pn' => 'Pitcairn', |
387 | | - 'pl' => 'Poland', |
388 | | - 'pt' => 'Portugal', |
389 | | - 'pr' => 'Puerto Rico', |
390 | | - 'qa' => 'Qatar', |
391 | | - 're' => 'Reunion', |
392 | | - 'ro' => 'Romania', |
393 | | - 'ru' => 'Russian Federation', |
394 | | - 'rw' => 'Rwanda', |
395 | | - 'sh' => 'Saint Helena', |
396 | | - 'kn' => 'Saint Kitts and Nevis', |
397 | | - 'lc' => 'Saint Lucia', |
398 | | - 'pm' => 'Saint Pierre and Miquelon', |
399 | | - 'vc' => 'Saint Vincent and the Grenadines', |
400 | | - 'ws' => 'Samoa', |
401 | | - 'sm' => 'San Marino', |
402 | | - 'st' => 'Sao Tome and Principe', |
403 | | - 'sa' => 'Saudi Arabia', |
404 | | - 'sn' => 'Senegal', |
405 | | - 'rs' => 'Serbia', |
406 | | - 'sc' => 'Seychelles', |
407 | | - 'sl' => 'Sierra Leone', |
408 | | - 'sg' => 'Singapore', |
409 | | - 'sk' => 'Slovakia', |
410 | | - 'si' => 'Slovenia', |
411 | | - 'sb' => 'Solomon Islands', |
412 | | - 'so' => 'Somalia', |
413 | | - 'za' => 'South Africa', |
414 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
415 | | - 'es' => 'Spain', |
416 | | - 'lk' => 'Sri Lanka', |
417 | | - 'sd' => 'Sudan', |
418 | | - 'sr' => 'Suriname', |
419 | | - 'sj' => 'Svalbard and Jan Mayen', |
420 | | - 'sz' => 'Swaziland', |
421 | | - 'se' => 'Sweden', |
422 | | - 'ch' => 'Switzerland', |
423 | | - 'sy' => 'Syrian Arab Republic', |
424 | | - 'tj' => 'Tajikistan', |
425 | | - 'tz' => 'Tanzania, United Republic of', |
426 | | - 'th' => 'Thailand', |
427 | | - 'tl' => 'Timor-leste', |
428 | | - 'tg' => 'Togo', |
429 | | - 'tk' => 'Tokelau', |
430 | | - 'to' => 'Tonga', |
431 | | - 'tt' => 'Trinidad and Tobago', |
432 | | - 'tn' => 'Tunisia', |
433 | | - 'tr' => 'Turkey', |
434 | | - 'tm' => 'Turkmenistan', |
435 | | - 'tc' => 'Turks and Caicos Islands', |
436 | | - 'tv' => 'Tuvalu', |
437 | | - 'ug' => 'Uganda', |
438 | | - 'ua' => 'Ukraine', |
439 | | - 'ae' => 'United Arab Emirates', |
440 | | - 'gb' => 'United Kingdom', |
441 | | - 'us' => 'United States', |
442 | | - 'um' => 'United States Minor Outlying Islands', |
443 | | - 'uy' => 'Uruguay', |
444 | | - 'uz' => 'Uzbekistan', |
445 | | - 'vu' => 'Vanuatu', |
446 | | - 've' => 'Venezuela', |
447 | | - 'vn' => 'Viet Nam', |
448 | | - 'vg' => 'Virgin Islands, British', |
449 | | - 'vi' => 'Virgin Islands, U.S.', |
450 | | - 'wf' => 'Wallis and Futuna', |
451 | | - 'eh' => 'Western Sahara', |
452 | | - 'ye' => 'Yemen', |
453 | | - 'zm' => 'Zambia', |
454 | | - 'zw' => 'Zimbabwe' |
| 360 | + 'ms' => 'Montserrat', |
| 361 | + 'ma' => 'Morocco', |
| 362 | + 'mz' => 'Mozambique', |
| 363 | + 'na' => 'Namibia', |
| 364 | + 'nr' => 'Nauru', |
| 365 | + 'np' => 'Nepal', |
| 366 | + 'nl' => 'Netherlands', |
| 367 | + 'an' => 'Netherlands Antilles', |
| 368 | + 'nc' => 'New Caledonia', |
| 369 | + 'nz' => 'New Zealand', |
| 370 | + 'ni' => 'Nicaragua', |
| 371 | + 'ne' => 'Niger', |
| 372 | + 'ng' => 'Nigeria', |
| 373 | + 'nu' => 'Niue', |
| 374 | + 'nf' => 'Norfolk Island', |
| 375 | + 'mp' => 'Northern Mariana Islands', |
| 376 | + 'no' => 'Norway', |
| 377 | + 'om' => 'Oman', |
| 378 | + 'pk' => 'Pakistan', |
| 379 | + 'pw' => 'Palau', |
| 380 | + 'ps' => 'Palestinian Territory', |
| 381 | + 'pa' => 'Panama', |
| 382 | + 'pg' => 'Papua New Guinea', |
| 383 | + 'py' => 'Paraguay', |
| 384 | + 'pe' => 'Peru', |
| 385 | + 'ph' => 'Philippines', |
| 386 | + 'pn' => 'Pitcairn', |
| 387 | + 'pl' => 'Poland', |
| 388 | + 'pt' => 'Portugal', |
| 389 | + 'pr' => 'Puerto Rico', |
| 390 | + 'qa' => 'Qatar', |
| 391 | + 're' => 'Reunion', |
| 392 | + 'ro' => 'Romania', |
| 393 | + 'ru' => 'Russian Federation', |
| 394 | + 'rw' => 'Rwanda', |
| 395 | + 'sh' => 'Saint Helena', |
| 396 | + 'kn' => 'Saint Kitts and Nevis', |
| 397 | + 'lc' => 'Saint Lucia', |
| 398 | + 'pm' => 'Saint Pierre and Miquelon', |
| 399 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 400 | + 'ws' => 'Samoa', |
| 401 | + 'sm' => 'San Marino', |
| 402 | + 'st' => 'Sao Tome and Principe', |
| 403 | + 'sa' => 'Saudi Arabia', |
| 404 | + 'sn' => 'Senegal', |
| 405 | + 'rs' => 'Serbia', |
| 406 | + 'sc' => 'Seychelles', |
| 407 | + 'sl' => 'Sierra Leone', |
| 408 | + 'sg' => 'Singapore', |
| 409 | + 'sk' => 'Slovakia', |
| 410 | + 'si' => 'Slovenia', |
| 411 | + 'sb' => 'Solomon Islands', |
| 412 | + 'so' => 'Somalia', |
| 413 | + 'za' => 'South Africa', |
| 414 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 415 | + 'es' => 'Spain', |
| 416 | + 'lk' => 'Sri Lanka', |
| 417 | + 'sd' => 'Sudan', |
| 418 | + 'sr' => 'Suriname', |
| 419 | + 'sj' => 'Svalbard and Jan Mayen', |
| 420 | + 'sz' => 'Swaziland', |
| 421 | + 'se' => 'Sweden', |
| 422 | + 'ch' => 'Switzerland', |
| 423 | + 'sy' => 'Syrian Arab Republic', |
| 424 | + 'tj' => 'Tajikistan', |
| 425 | + 'tz' => 'Tanzania, United Republic of', |
| 426 | + 'th' => 'Thailand', |
| 427 | + 'tl' => 'Timor-leste', |
| 428 | + 'tg' => 'Togo', |
| 429 | + 'tk' => 'Tokelau', |
| 430 | + 'to' => 'Tonga', |
| 431 | + 'tt' => 'Trinidad and Tobago', |
| 432 | + 'tn' => 'Tunisia', |
| 433 | + 'tr' => 'Turkey', |
| 434 | + 'tm' => 'Turkmenistan', |
| 435 | + 'tc' => 'Turks and Caicos Islands', |
| 436 | + 'tv' => 'Tuvalu', |
| 437 | + 'ug' => 'Uganda', |
| 438 | + 'ua' => 'Ukraine', |
| 439 | + 'ae' => 'United Arab Emirates', |
| 440 | + 'gb' => 'United Kingdom', |
| 441 | + 'us' => 'United States', |
| 442 | + 'um' => 'United States Minor Outlying Islands', |
| 443 | + 'uy' => 'Uruguay', |
| 444 | + 'uz' => 'Uzbekistan', |
| 445 | + 'vu' => 'Vanuatu', |
| 446 | + 've' => 'Venezuela', |
| 447 | + 'vn' => 'Viet Nam', |
| 448 | + 'vg' => 'Virgin Islands, British', |
| 449 | + 'vi' => 'Virgin Islands, U.S.', |
| 450 | + 'wf' => 'Wallis and Futuna', |
| 451 | + 'eh' => 'Western Sahara', |
| 452 | + 'ye' => 'Yemen', |
| 453 | + 'zm' => 'Zambia', |
| 454 | + 'zw' => 'Zimbabwe' |
455 | 455 | ); |
Index: trunk/wikimania/wmreg/includes/notinuse/language_ko.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => '개인 정보', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>개인 식별 데이터</strong></p> |
14 | | - <p>이 양식에 당신의 개인 데이터를 정확하게 기재해 주세요.</p> |
| 13 | +' <p><strong>개인 식별 데이터</strong></p> |
| 14 | + <p>이 양식에 당신의 개인 데이터를 정확하게 기재해 주세요.</p> |
15 | 15 | ', |
16 | 16 | 'egy' => '이집트가 당신의 국적입니까?', |
17 | 17 | 'egy1' => '그렇습니다. (다음 양식에 당신의 이름과 국가인증번호를 기재해 주세요.)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>언어 구사 능력</strong></p>', |
| 37 | +' <p><strong>언어 구사 능력</strong></p>', |
38 | 38 | 'langn' => '모국어', |
39 | 39 | 'lang' => '언어 능력 수준', |
40 | 40 | 'select_lang' => '언어를 선택해 주세요', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => '온어 3의 구사 능력', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>위키미디어 프로젝트와 이메일 계정</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>당신의 이메일 정보는 위키매니아 2008의 등록과 긴급 확인 용도로만 사용될 것입니다.</li> |
60 | | - </ul> |
| 57 | +' <p><strong>위키미디어 프로젝트와 이메일 계정</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>당신의 이메일 정보는 위키매니아 2008의 등록과 긴급 확인 용도로만 사용될 것입니다.</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => '선호하는 위키미디어 프로젝트 계정 이름', |
63 | 63 | 'email' => '당신의 이메일', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => '참가', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>참가, 배지 정보 및 기타</strong></p> |
69 | | - <p>숙박과 트랙 세션 및 관련 서비스에서 더 나은 배치를 위해 필요하오니 당신의 원하는 사항을 아래의 항목에서 선택해 주세요.</p> |
| 68 | +' <p><strong>참가, 배지 정보 및 기타</strong></p> |
| 69 | + <p>숙박과 트랙 세션 및 관련 서비스에서 더 나은 배치를 위해 필요하오니 당신의 원하는 사항을 아래의 항목에서 선택해 주세요.</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => '참가 일자', |
72 | 72 | 'join1' => '7월 17일', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => ' 비자 발급을 위해 어떤 기관이 어떻게 도와주어야 하는 기재해 주세요. (<strong>아랍어</strong> 또는 <strong>영어</strong>로)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>숙박</strong></p> |
104 | | - <p>숙박과 관련하여 2개의 옵션이 있습니다. 당신은 더블 룸의 2개의 시내 호텔 중 하나를 선택하거나 성마르크 대학의 기숙사를 선택하여 숙박할 수 있습니다. |
| 103 | +' <p><strong>숙박</strong></p> |
| 104 | + <p>숙박과 관련하여 2개의 옵션이 있습니다. 당신은 더블 룸의 2개의 시내 호텔 중 하나를 선택하거나 성마르크 대학의 기숙사를 선택하여 숙박할 수 있습니다. |
105 | 105 | 등록하시기 전에, 정확한 위치와 선택가능한 사양을 <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>위키매니아 공식 사이트</a>에서 상세 내용을 확인하세요.></p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => '선호하는 호텔', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => '상관 없음', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>지불</strong></p> |
125 | | - <p>당신은 당신의 Paypal 계좌에서 출금하거나 <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103개 국가/지역</a>(이집트는 포함되지 않음)에서 PayPal을 통해 당신의 신용카드를 사용하거나 또는 알렉산드리아에 있는 조직위 소유의 은행 계좌에 송금과 직접 지불을 통해 지불할 수도 있습니다. 주의: 당신이 이집트인이면 PayPal 옵션은 사용 불가합니다.</p> |
| 124 | +' <p><strong>지불</strong></p> |
| 125 | + <p>당신은 당신의 Paypal 계좌에서 출금하거나 <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103개 국가/지역</a>(이집트는 포함되지 않음)에서 PayPal을 통해 당신의 신용카드를 사용하거나 또는 알렉산드리아에 있는 조직위 소유의 은행 계좌에 송금과 직접 지불을 통해 지불할 수도 있습니다. 주의: 당신이 이집트인이면 PayPal 옵션은 사용 불가합니다.</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => '지불 수단', |
— | — | @@ -208,245 +208,245 @@ |
209 | 209 | |
210 | 210 | |
211 | 211 | $lang_countries = array( |
212 | | - 'af' => 'Afghanistan', |
213 | | - 'ax' => 'Aland Islands', |
214 | | - 'al' => 'Albania', |
215 | | - 'dz' => 'Algeria', |
216 | | - 'as' => 'American Samoa', |
217 | | - 'ad' => 'Andorra', |
218 | | - 'ao' => 'Angola', |
219 | | - 'ai' => 'Anguilla', |
220 | | - 'aq' => 'Antarctica', |
221 | | - 'ag' => 'Antigua and Barbuda', |
222 | | - 'ar' => 'Argentina', |
223 | | - 'am' => 'Armenia', |
224 | | - 'aw' => 'Aruba', |
225 | | - 'au' => 'Australia', |
226 | | - 'at' => 'Austria', |
227 | | - 'az' => 'Azerbaijan', |
228 | | - 'bs' => 'Bahamas', |
229 | | - 'bh' => 'Bahrain', |
230 | | - 'bd' => 'Bangladesh', |
231 | | - 'bb' => 'Barbados', |
232 | | - 'by' => 'Belarus', |
233 | | - 'be' => 'Belgium', |
234 | | - 'bz' => 'Belize', |
235 | | - 'bj' => 'Benin', |
236 | | - 'bm' => 'Bermuda', |
237 | | - 'bt' => 'Bhutan', |
238 | | - 'bo' => 'Bolivia', |
239 | | - 'ba' => 'Bosnia and Herzegovina', |
240 | | - 'bw' => 'Botswana', |
241 | | - 'bv' => 'Bouvet Island', |
242 | | - 'br' => 'Brazil', |
243 | | - 'io' => 'British Indian Ocean Territory', |
244 | | - 'bn' => 'Brunei Darussalam', |
245 | | - 'bg' => 'Bulgaria', |
246 | | - 'bf' => 'Burkina Faso', |
247 | | - 'mm' => 'Burma (Myanmar)', |
248 | | - 'bi' => 'Burundi', |
249 | | - 'kh' => 'Cambodia', |
250 | | - 'cm' => 'Cameroon', |
251 | | - 'ca' => 'Canada', |
252 | | - 'cv' => 'Cape Verde', |
253 | | - 'ky' => 'Cayman Islands', |
254 | | - 'cf' => 'Central African Republic', |
255 | | - 'td' => 'Chad', |
256 | | - 'cl' => 'Chile', |
257 | | - 'hk' => 'Hong Kong SAR', |
258 | | - 'cn' => 'People\'s Republic of China', |
259 | | - 'tw' => 'Republic of China (Taiwan)', |
260 | | - 'cx' => 'Christmas Island', |
261 | | - 'cc' => 'Cocos (keeling) Islands', |
262 | | - 'co' => 'Colombia', |
263 | | - 'km' => 'Comoros', |
264 | | - 'cg' => 'Congo', |
265 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
266 | | - 'ck' => 'Cook Islands', |
267 | | - 'cr' => 'Costa Rica', |
268 | | - 'ci' => 'Cote D\'ivoire', |
269 | | - 'hr' => 'Croatia', |
270 | | - 'cu' => 'Cuba', |
271 | | - 'cy' => 'Cyprus', |
272 | | - 'cz' => 'Czech Republic', |
273 | | - 'dk' => 'Denmark', |
274 | | - 'dj' => 'Djibouti', |
275 | | - 'dm' => 'Dominica', |
276 | | - 'do' => 'Dominican Republic', |
277 | | - 'ec' => 'Ecuador', |
278 | | - 'eg' => 'Egypt', |
279 | | - 'sv' => 'El Salvador', |
280 | | - 'gq' => 'Equatorial Guinea', |
281 | | - 'er' => 'Eritrea', |
282 | | - 'ee' => 'Estonia', |
283 | | - 'et' => 'Ethiopia', |
284 | | - 'fk' => 'Falkland Islands (malvinas)', |
285 | | - 'fo' => 'Faroe Islands', |
286 | | - 'fj' => 'Fiji', |
287 | | - 'fi' => 'Finland', |
288 | | - 'fr' => 'France', |
289 | | - 'gf' => 'French Guiana', |
290 | | - 'pf' => 'French Polynesia', |
291 | | - 'tf' => 'French Southern Territories', |
292 | | - 'ga' => 'Gabon', |
293 | | - 'gm' => 'Gambia', |
294 | | - 'ge' => 'Georgia', |
295 | | - 'de' => 'Germany', |
296 | | - 'gh' => 'Ghana', |
297 | | - 'gi' => 'Gibraltar', |
298 | | - 'gr' => 'Greece', |
299 | | - 'gl' => 'Greenland', |
300 | | - 'gd' => 'Grenada', |
301 | | - 'gp' => 'Guadeloupe', |
302 | | - 'gu' => 'Guam', |
303 | | - 'gt' => 'Guatemala', |
304 | | - 'gn' => 'Guinea', |
305 | | - 'gw' => 'Guinea-Bissau', |
306 | | - 'gy' => 'Guyana', |
307 | | - 'ht' => 'Haiti', |
308 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
309 | | - 'va' => 'Holy See (Vatican City)', |
310 | | - 'hn' => 'Honduras', |
311 | | - 'hu' => 'Hungary', |
312 | | - 'is' => 'Iceland', |
313 | | - 'in' => 'India', |
314 | | - 'id' => 'Indonesia', |
315 | | - 'ir' => 'Iran, Islamic Republic of', |
316 | | - 'iq' => 'Iraq', |
317 | | - 'ie' => 'Ireland', |
318 | | - 'il' => 'Israel', |
319 | | - 'it' => 'Italy', |
320 | | - 'jm' => 'Jamaica', |
321 | | - 'jp' => 'Japan', |
322 | | - 'jo' => 'Jordan', |
323 | | - 'kz' => 'Kazakhstan', |
324 | | - 'ke' => 'Kenya', |
325 | | - 'ki' => 'Kiribati', |
326 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
327 | | - 'kr' => 'Republic of Korea', |
328 | | - 'kw' => 'Kuwait', |
329 | | - 'kg' => 'Kyrgyzstan', |
330 | | - 'la' => 'Lao People\'s Democratic Republic', |
331 | | - 'lv' => 'Latvia', |
332 | | - 'lb' => 'Lebanon', |
333 | | - 'ls' => 'Lesotho', |
334 | | - 'lr' => 'Liberia', |
335 | | - 'ly' => 'Libyan Arab Jamahiriya', |
336 | | - 'li' => 'Liechtenstein', |
337 | | - 'lt' => 'Lithuania', |
338 | | - 'lu' => 'Luxembourg', |
339 | | - 'mo' => 'Macao', |
340 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
341 | | - 'mg' => 'Madagascar', |
342 | | - 'mw' => 'Malawi', |
343 | | - 'my' => 'Malaysia', |
344 | | - 'mv' => 'Maldives', |
345 | | - 'ml' => 'Mali', |
346 | | - 'mt' => 'Malta', |
347 | | - 'mh' => 'Marshall Islands', |
348 | | - 'mq' => 'Martinique', |
349 | | - 'mr' => 'Mauritania', |
350 | | - 'mu' => 'Mauritius', |
351 | | - 'yt' => 'Mayotte', |
352 | | - 'mx' => 'Mexico', |
353 | | - 'fm' => 'Micronesia, Federated States of', |
354 | | - 'md' => 'Moldova, Republic of', |
355 | | - 'mc' => 'Monaco SAR', |
356 | | - 'mn' => 'Mongolia', |
| 212 | + 'af' => 'Afghanistan', |
| 213 | + 'ax' => 'Aland Islands', |
| 214 | + 'al' => 'Albania', |
| 215 | + 'dz' => 'Algeria', |
| 216 | + 'as' => 'American Samoa', |
| 217 | + 'ad' => 'Andorra', |
| 218 | + 'ao' => 'Angola', |
| 219 | + 'ai' => 'Anguilla', |
| 220 | + 'aq' => 'Antarctica', |
| 221 | + 'ag' => 'Antigua and Barbuda', |
| 222 | + 'ar' => 'Argentina', |
| 223 | + 'am' => 'Armenia', |
| 224 | + 'aw' => 'Aruba', |
| 225 | + 'au' => 'Australia', |
| 226 | + 'at' => 'Austria', |
| 227 | + 'az' => 'Azerbaijan', |
| 228 | + 'bs' => 'Bahamas', |
| 229 | + 'bh' => 'Bahrain', |
| 230 | + 'bd' => 'Bangladesh', |
| 231 | + 'bb' => 'Barbados', |
| 232 | + 'by' => 'Belarus', |
| 233 | + 'be' => 'Belgium', |
| 234 | + 'bz' => 'Belize', |
| 235 | + 'bj' => 'Benin', |
| 236 | + 'bm' => 'Bermuda', |
| 237 | + 'bt' => 'Bhutan', |
| 238 | + 'bo' => 'Bolivia', |
| 239 | + 'ba' => 'Bosnia and Herzegovina', |
| 240 | + 'bw' => 'Botswana', |
| 241 | + 'bv' => 'Bouvet Island', |
| 242 | + 'br' => 'Brazil', |
| 243 | + 'io' => 'British Indian Ocean Territory', |
| 244 | + 'bn' => 'Brunei Darussalam', |
| 245 | + 'bg' => 'Bulgaria', |
| 246 | + 'bf' => 'Burkina Faso', |
| 247 | + 'mm' => 'Burma (Myanmar)', |
| 248 | + 'bi' => 'Burundi', |
| 249 | + 'kh' => 'Cambodia', |
| 250 | + 'cm' => 'Cameroon', |
| 251 | + 'ca' => 'Canada', |
| 252 | + 'cv' => 'Cape Verde', |
| 253 | + 'ky' => 'Cayman Islands', |
| 254 | + 'cf' => 'Central African Republic', |
| 255 | + 'td' => 'Chad', |
| 256 | + 'cl' => 'Chile', |
| 257 | + 'hk' => 'Hong Kong SAR', |
| 258 | + 'cn' => 'People\'s Republic of China', |
| 259 | + 'tw' => 'Republic of China (Taiwan)', |
| 260 | + 'cx' => 'Christmas Island', |
| 261 | + 'cc' => 'Cocos (keeling) Islands', |
| 262 | + 'co' => 'Colombia', |
| 263 | + 'km' => 'Comoros', |
| 264 | + 'cg' => 'Congo', |
| 265 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 266 | + 'ck' => 'Cook Islands', |
| 267 | + 'cr' => 'Costa Rica', |
| 268 | + 'ci' => 'Cote D\'ivoire', |
| 269 | + 'hr' => 'Croatia', |
| 270 | + 'cu' => 'Cuba', |
| 271 | + 'cy' => 'Cyprus', |
| 272 | + 'cz' => 'Czech Republic', |
| 273 | + 'dk' => 'Denmark', |
| 274 | + 'dj' => 'Djibouti', |
| 275 | + 'dm' => 'Dominica', |
| 276 | + 'do' => 'Dominican Republic', |
| 277 | + 'ec' => 'Ecuador', |
| 278 | + 'eg' => 'Egypt', |
| 279 | + 'sv' => 'El Salvador', |
| 280 | + 'gq' => 'Equatorial Guinea', |
| 281 | + 'er' => 'Eritrea', |
| 282 | + 'ee' => 'Estonia', |
| 283 | + 'et' => 'Ethiopia', |
| 284 | + 'fk' => 'Falkland Islands (malvinas)', |
| 285 | + 'fo' => 'Faroe Islands', |
| 286 | + 'fj' => 'Fiji', |
| 287 | + 'fi' => 'Finland', |
| 288 | + 'fr' => 'France', |
| 289 | + 'gf' => 'French Guiana', |
| 290 | + 'pf' => 'French Polynesia', |
| 291 | + 'tf' => 'French Southern Territories', |
| 292 | + 'ga' => 'Gabon', |
| 293 | + 'gm' => 'Gambia', |
| 294 | + 'ge' => 'Georgia', |
| 295 | + 'de' => 'Germany', |
| 296 | + 'gh' => 'Ghana', |
| 297 | + 'gi' => 'Gibraltar', |
| 298 | + 'gr' => 'Greece', |
| 299 | + 'gl' => 'Greenland', |
| 300 | + 'gd' => 'Grenada', |
| 301 | + 'gp' => 'Guadeloupe', |
| 302 | + 'gu' => 'Guam', |
| 303 | + 'gt' => 'Guatemala', |
| 304 | + 'gn' => 'Guinea', |
| 305 | + 'gw' => 'Guinea-Bissau', |
| 306 | + 'gy' => 'Guyana', |
| 307 | + 'ht' => 'Haiti', |
| 308 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 309 | + 'va' => 'Holy See (Vatican City)', |
| 310 | + 'hn' => 'Honduras', |
| 311 | + 'hu' => 'Hungary', |
| 312 | + 'is' => 'Iceland', |
| 313 | + 'in' => 'India', |
| 314 | + 'id' => 'Indonesia', |
| 315 | + 'ir' => 'Iran, Islamic Republic of', |
| 316 | + 'iq' => 'Iraq', |
| 317 | + 'ie' => 'Ireland', |
| 318 | + 'il' => 'Israel', |
| 319 | + 'it' => 'Italy', |
| 320 | + 'jm' => 'Jamaica', |
| 321 | + 'jp' => 'Japan', |
| 322 | + 'jo' => 'Jordan', |
| 323 | + 'kz' => 'Kazakhstan', |
| 324 | + 'ke' => 'Kenya', |
| 325 | + 'ki' => 'Kiribati', |
| 326 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 327 | + 'kr' => 'Republic of Korea', |
| 328 | + 'kw' => 'Kuwait', |
| 329 | + 'kg' => 'Kyrgyzstan', |
| 330 | + 'la' => 'Lao People\'s Democratic Republic', |
| 331 | + 'lv' => 'Latvia', |
| 332 | + 'lb' => 'Lebanon', |
| 333 | + 'ls' => 'Lesotho', |
| 334 | + 'lr' => 'Liberia', |
| 335 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 336 | + 'li' => 'Liechtenstein', |
| 337 | + 'lt' => 'Lithuania', |
| 338 | + 'lu' => 'Luxembourg', |
| 339 | + 'mo' => 'Macao', |
| 340 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 341 | + 'mg' => 'Madagascar', |
| 342 | + 'mw' => 'Malawi', |
| 343 | + 'my' => 'Malaysia', |
| 344 | + 'mv' => 'Maldives', |
| 345 | + 'ml' => 'Mali', |
| 346 | + 'mt' => 'Malta', |
| 347 | + 'mh' => 'Marshall Islands', |
| 348 | + 'mq' => 'Martinique', |
| 349 | + 'mr' => 'Mauritania', |
| 350 | + 'mu' => 'Mauritius', |
| 351 | + 'yt' => 'Mayotte', |
| 352 | + 'mx' => 'Mexico', |
| 353 | + 'fm' => 'Micronesia, Federated States of', |
| 354 | + 'md' => 'Moldova, Republic of', |
| 355 | + 'mc' => 'Monaco SAR', |
| 356 | + 'mn' => 'Mongolia', |
357 | 357 | 'me' => 'Montenegro', |
358 | | - 'ms' => 'Montserrat', |
359 | | - 'ma' => 'Morocco', |
360 | | - 'mz' => 'Mozambique', |
361 | | - 'na' => 'Namibia', |
362 | | - 'nr' => 'Nauru', |
363 | | - 'np' => 'Nepal', |
364 | | - 'nl' => 'Netherlands', |
365 | | - 'an' => 'Netherlands Antilles', |
366 | | - 'nc' => 'New Caledonia', |
367 | | - 'nz' => 'New Zealand', |
368 | | - 'ni' => 'Nicaragua', |
369 | | - 'ne' => 'Niger', |
370 | | - 'ng' => 'Nigeria', |
371 | | - 'nu' => 'Niue', |
372 | | - 'nf' => 'Norfolk Island', |
373 | | - 'mp' => 'Northern Mariana Islands', |
374 | | - 'no' => 'Norway', |
375 | | - 'om' => 'Oman', |
376 | | - 'pk' => 'Pakistan', |
377 | | - 'pw' => 'Palau', |
378 | | - 'ps' => 'Palestinian Territory', |
379 | | - 'pa' => 'Panama', |
380 | | - 'pg' => 'Papua New Guinea', |
381 | | - 'py' => 'Paraguay', |
382 | | - 'pe' => 'Peru', |
383 | | - 'ph' => 'Philippines', |
384 | | - 'pn' => 'Pitcairn', |
385 | | - 'pl' => 'Poland', |
386 | | - 'pt' => 'Portugal', |
387 | | - 'pr' => 'Puerto Rico', |
388 | | - 'qa' => 'Qatar', |
389 | | - 're' => 'Reunion', |
390 | | - 'ro' => 'Romania', |
391 | | - 'ru' => 'Russian Federation', |
392 | | - 'rw' => 'Rwanda', |
393 | | - 'sh' => 'Saint Helena', |
394 | | - 'kn' => 'Saint Kitts and Nevis', |
395 | | - 'lc' => 'Saint Lucia', |
396 | | - 'pm' => 'Saint Pierre and Miquelon', |
397 | | - 'vc' => 'Saint Vincent and the Grenadines', |
398 | | - 'ws' => 'Samoa', |
399 | | - 'sm' => 'San Marino', |
400 | | - 'st' => 'Sao Tome and Principe', |
401 | | - 'sa' => 'Saudi Arabia', |
402 | | - 'sn' => 'Senegal', |
403 | | - 'rs' => 'Serbia', |
404 | | - 'sc' => 'Seychelles', |
405 | | - 'sl' => 'Sierra Leone', |
406 | | - 'sg' => 'Singapore', |
407 | | - 'sk' => 'Slovakia', |
408 | | - 'si' => 'Slovenia', |
409 | | - 'sb' => 'Solomon Islands', |
410 | | - 'so' => 'Somalia', |
411 | | - 'za' => 'South Africa', |
412 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
413 | | - 'es' => 'Spain', |
414 | | - 'lk' => 'Sri Lanka', |
415 | | - 'sd' => 'Sudan', |
416 | | - 'sr' => 'Suriname', |
417 | | - 'sj' => 'Svalbard and Jan Mayen', |
418 | | - 'sz' => 'Swaziland', |
419 | | - 'se' => 'Sweden', |
420 | | - 'ch' => 'Switzerland', |
421 | | - 'sy' => 'Syrian Arab Republic', |
422 | | - 'tj' => 'Tajikistan', |
423 | | - 'tz' => 'Tanzania, United Republic of', |
424 | | - 'th' => 'Thailand', |
425 | | - 'tl' => 'Timor-leste', |
426 | | - 'tg' => 'Togo', |
427 | | - 'tk' => 'Tokelau', |
428 | | - 'to' => 'Tonga', |
429 | | - 'tt' => 'Trinidad and Tobago', |
430 | | - 'tn' => 'Tunisia', |
431 | | - 'tr' => 'Turkey', |
432 | | - 'tm' => 'Turkmenistan', |
433 | | - 'tc' => 'Turks and Caicos Islands', |
434 | | - 'tv' => 'Tuvalu', |
435 | | - 'ug' => 'Uganda', |
436 | | - 'ua' => 'Ukraine', |
437 | | - 'ae' => 'United Arab Emirates', |
438 | | - 'gb' => 'United Kingdom', |
439 | | - 'us' => 'United States', |
440 | | - 'um' => 'United States Minor Outlying Islands', |
441 | | - 'uy' => 'Uruguay', |
442 | | - 'uz' => 'Uzbekistan', |
443 | | - 'vu' => 'Vanuatu', |
444 | | - 've' => 'Venezuela', |
445 | | - 'vn' => 'Viet Nam', |
446 | | - 'vg' => 'Virgin Islands, British', |
447 | | - 'vi' => 'Virgin Islands, U.S.', |
448 | | - 'wf' => 'Wallis and Futuna', |
449 | | - 'eh' => 'Western Sahara', |
450 | | - 'ye' => 'Yemen', |
451 | | - 'zm' => 'Zambia', |
452 | | - 'zw' => 'Zimbabwe' |
| 358 | + 'ms' => 'Montserrat', |
| 359 | + 'ma' => 'Morocco', |
| 360 | + 'mz' => 'Mozambique', |
| 361 | + 'na' => 'Namibia', |
| 362 | + 'nr' => 'Nauru', |
| 363 | + 'np' => 'Nepal', |
| 364 | + 'nl' => 'Netherlands', |
| 365 | + 'an' => 'Netherlands Antilles', |
| 366 | + 'nc' => 'New Caledonia', |
| 367 | + 'nz' => 'New Zealand', |
| 368 | + 'ni' => 'Nicaragua', |
| 369 | + 'ne' => 'Niger', |
| 370 | + 'ng' => 'Nigeria', |
| 371 | + 'nu' => 'Niue', |
| 372 | + 'nf' => 'Norfolk Island', |
| 373 | + 'mp' => 'Northern Mariana Islands', |
| 374 | + 'no' => 'Norway', |
| 375 | + 'om' => 'Oman', |
| 376 | + 'pk' => 'Pakistan', |
| 377 | + 'pw' => 'Palau', |
| 378 | + 'ps' => 'Palestinian Territory', |
| 379 | + 'pa' => 'Panama', |
| 380 | + 'pg' => 'Papua New Guinea', |
| 381 | + 'py' => 'Paraguay', |
| 382 | + 'pe' => 'Peru', |
| 383 | + 'ph' => 'Philippines', |
| 384 | + 'pn' => 'Pitcairn', |
| 385 | + 'pl' => 'Poland', |
| 386 | + 'pt' => 'Portugal', |
| 387 | + 'pr' => 'Puerto Rico', |
| 388 | + 'qa' => 'Qatar', |
| 389 | + 're' => 'Reunion', |
| 390 | + 'ro' => 'Romania', |
| 391 | + 'ru' => 'Russian Federation', |
| 392 | + 'rw' => 'Rwanda', |
| 393 | + 'sh' => 'Saint Helena', |
| 394 | + 'kn' => 'Saint Kitts and Nevis', |
| 395 | + 'lc' => 'Saint Lucia', |
| 396 | + 'pm' => 'Saint Pierre and Miquelon', |
| 397 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 398 | + 'ws' => 'Samoa', |
| 399 | + 'sm' => 'San Marino', |
| 400 | + 'st' => 'Sao Tome and Principe', |
| 401 | + 'sa' => 'Saudi Arabia', |
| 402 | + 'sn' => 'Senegal', |
| 403 | + 'rs' => 'Serbia', |
| 404 | + 'sc' => 'Seychelles', |
| 405 | + 'sl' => 'Sierra Leone', |
| 406 | + 'sg' => 'Singapore', |
| 407 | + 'sk' => 'Slovakia', |
| 408 | + 'si' => 'Slovenia', |
| 409 | + 'sb' => 'Solomon Islands', |
| 410 | + 'so' => 'Somalia', |
| 411 | + 'za' => 'South Africa', |
| 412 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 413 | + 'es' => 'Spain', |
| 414 | + 'lk' => 'Sri Lanka', |
| 415 | + 'sd' => 'Sudan', |
| 416 | + 'sr' => 'Suriname', |
| 417 | + 'sj' => 'Svalbard and Jan Mayen', |
| 418 | + 'sz' => 'Swaziland', |
| 419 | + 'se' => 'Sweden', |
| 420 | + 'ch' => 'Switzerland', |
| 421 | + 'sy' => 'Syrian Arab Republic', |
| 422 | + 'tj' => 'Tajikistan', |
| 423 | + 'tz' => 'Tanzania, United Republic of', |
| 424 | + 'th' => 'Thailand', |
| 425 | + 'tl' => 'Timor-leste', |
| 426 | + 'tg' => 'Togo', |
| 427 | + 'tk' => 'Tokelau', |
| 428 | + 'to' => 'Tonga', |
| 429 | + 'tt' => 'Trinidad and Tobago', |
| 430 | + 'tn' => 'Tunisia', |
| 431 | + 'tr' => 'Turkey', |
| 432 | + 'tm' => 'Turkmenistan', |
| 433 | + 'tc' => 'Turks and Caicos Islands', |
| 434 | + 'tv' => 'Tuvalu', |
| 435 | + 'ug' => 'Uganda', |
| 436 | + 'ua' => 'Ukraine', |
| 437 | + 'ae' => 'United Arab Emirates', |
| 438 | + 'gb' => 'United Kingdom', |
| 439 | + 'us' => 'United States', |
| 440 | + 'um' => 'United States Minor Outlying Islands', |
| 441 | + 'uy' => 'Uruguay', |
| 442 | + 'uz' => 'Uzbekistan', |
| 443 | + 'vu' => 'Vanuatu', |
| 444 | + 've' => 'Venezuela', |
| 445 | + 'vn' => 'Viet Nam', |
| 446 | + 'vg' => 'Virgin Islands, British', |
| 447 | + 'vi' => 'Virgin Islands, U.S.', |
| 448 | + 'wf' => 'Wallis and Futuna', |
| 449 | + 'eh' => 'Western Sahara', |
| 450 | + 'ye' => 'Yemen', |
| 451 | + 'zm' => 'Zambia', |
| 452 | + 'zw' => 'Zimbabwe' |
453 | 453 | ); |
Index: trunk/wikimania/wmreg/includes/notinuse/language_zh-hant.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => '個人資料', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>個人身份資料</strong></p> |
14 | | - <p>請確保填上正確的個人資料</p> |
| 13 | +' <p><strong>個人身份資料</strong></p> |
| 14 | + <p>請確保填上正確的個人資料</p> |
15 | 15 | ', |
16 | 16 | 'egy' => '你是否埃及阿拉伯共和國的公民?', |
17 | 17 | 'egy1' => '是(請在以下欄位填上你的國民身份號碼和姓名。)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>語言</strong></p>', |
| 37 | +' <p><strong>語言</strong></p>', |
38 | 38 | 'langn' => '母語', |
39 | 39 | 'lang' => '熟練程度', |
40 | 40 | 'select_lang' => '選擇語言', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => '第三語言的熟練程度', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>參與的維基計劃和電郵戶口</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>年會籌備小組將只會在註冊相關程序和緊急通知時使用你的電郵地址資訊。</li> |
60 | | - </ul> |
| 57 | +' <p><strong>參與的維基計劃和電郵戶口</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>年會籌備小組將只會在註冊相關程序和緊急通知時使用你的電郵地址資訊。</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => '意欲使用的維基計劃戶口名稱。', |
63 | 63 | 'email' => '電郵地址', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => '參與狀況', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>參與狀況、名牌資訊和其他</strong></p> |
69 | | - <p>為了更好安排住宿、議程跟進和相關方面的服務,我們希望你告訴我們下列的資料。</p> |
| 68 | +' <p><strong>參與狀況、名牌資訊和其他</strong></p> |
| 69 | + <p>為了更好安排住宿、議程跟進和相關方面的服務,我們希望你告訴我們下列的資料。</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => '報名參與的日子', |
72 | 72 | 'join1' => '7月17日', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => '請說明籌備小組可以如何協助(請使用<strong>阿拉伯語</strong>或<strong>英語</strong>填寫)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>住宿</strong></p> |
104 | | - <p>我們提供兩種選擇。你可以選擇入住酒店,或入住聖馬可書院(Collège Saint Marc)的宿舍。 |
| 103 | +' <p><strong>住宿</strong></p> |
| 104 | + <p>我們提供兩種選擇。你可以選擇入住酒店,或入住聖馬可書院(Collège Saint Marc)的宿舍。 |
105 | 105 | 請查閱<a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>該頁面上的資訊</a>,取得住宿地點的實際位置和其附屬設施的資料,以便報名時申明你的決定。</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => '希望入住酒店', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => '沒有所謂', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>付款</strong></p> |
125 | | - <p>若你居住在<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">這裡所列出的103個國家/地區</a> (埃及除外),你可以通過PayPal,以借帳或信用卡付款。你也可以選擇匯款或將款項直接存入亞力山卓籌備小組的銀行戶口。請注意:來自埃及的申請人將不能使用PayPal付款。</p> |
| 124 | +' <p><strong>付款</strong></p> |
| 125 | + <p>若你居住在<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">這裡所列出的103個國家/地區</a> (埃及除外),你可以通過PayPal,以借帳或信用卡付款。你也可以選擇匯款或將款項直接存入亞力山卓籌備小組的銀行戶口。請注意:來自埃及的申請人將不能使用PayPal付款。</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => '付款方法', |
— | — | @@ -210,245 +210,245 @@ |
211 | 211 | ); |
212 | 212 | |
213 | 213 | $lang_countries = array( |
214 | | - 'af' => 'Afghanistan', |
215 | | - 'ax' => 'Aland Islands', |
216 | | - 'al' => 'Albania', |
217 | | - 'dz' => 'Algeria', |
218 | | - 'as' => 'American Samoa', |
219 | | - 'ad' => 'Andorra', |
220 | | - 'ao' => 'Angola', |
221 | | - 'ai' => 'Anguilla', |
222 | | - 'aq' => 'Antarctica', |
223 | | - 'ag' => 'Antigua and Barbuda', |
224 | | - 'ar' => 'Argentina', |
225 | | - 'am' => 'Armenia', |
226 | | - 'aw' => 'Aruba', |
227 | | - 'au' => 'Australia', |
228 | | - 'at' => 'Austria', |
229 | | - 'az' => 'Azerbaijan', |
230 | | - 'bs' => 'Bahamas', |
231 | | - 'bh' => 'Bahrain', |
232 | | - 'bd' => 'Bangladesh', |
233 | | - 'bb' => 'Barbados', |
234 | | - 'by' => 'Belarus', |
235 | | - 'be' => 'Belgium', |
236 | | - 'bz' => 'Belize', |
237 | | - 'bj' => 'Benin', |
238 | | - 'bm' => 'Bermuda', |
239 | | - 'bt' => 'Bhutan', |
240 | | - 'bo' => 'Bolivia', |
241 | | - 'ba' => 'Bosnia and Herzegovina', |
242 | | - 'bw' => 'Botswana', |
243 | | - 'bv' => 'Bouvet Island', |
244 | | - 'br' => 'Brazil', |
245 | | - 'io' => 'British Indian Ocean Territory', |
246 | | - 'bn' => 'Brunei Darussalam', |
247 | | - 'bg' => 'Bulgaria', |
248 | | - 'bf' => 'Burkina Faso', |
249 | | - 'mm' => 'Burma (Myanmar)', |
250 | | - 'bi' => 'Burundi', |
251 | | - 'kh' => 'Cambodia', |
252 | | - 'cm' => 'Cameroon', |
253 | | - 'ca' => 'Canada', |
254 | | - 'cv' => 'Cape Verde', |
255 | | - 'ky' => 'Cayman Islands', |
256 | | - 'cf' => 'Central African Republic', |
257 | | - 'td' => 'Chad', |
258 | | - 'cl' => 'Chile', |
259 | | - 'hk' => 'Hong Kong SAR', |
260 | | - 'cn' => 'People\'s Republic of China', |
261 | | - 'tw' => 'Republic of China (Taiwan)', |
262 | | - 'cx' => 'Christmas Island', |
263 | | - 'cc' => 'Cocos (keeling) Islands', |
264 | | - 'co' => 'Colombia', |
265 | | - 'km' => 'Comoros', |
266 | | - 'cg' => 'Congo', |
267 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
268 | | - 'ck' => 'Cook Islands', |
269 | | - 'cr' => 'Costa Rica', |
270 | | - 'ci' => 'Cote D\'ivoire', |
271 | | - 'hr' => 'Croatia', |
272 | | - 'cu' => 'Cuba', |
273 | | - 'cy' => 'Cyprus', |
274 | | - 'cz' => 'Czech Republic', |
275 | | - 'dk' => 'Denmark', |
276 | | - 'dj' => 'Djibouti', |
277 | | - 'dm' => 'Dominica', |
278 | | - 'do' => 'Dominican Republic', |
279 | | - 'ec' => 'Ecuador', |
280 | | - 'eg' => 'Egypt', |
281 | | - 'sv' => 'El Salvador', |
282 | | - 'gq' => 'Equatorial Guinea', |
283 | | - 'er' => 'Eritrea', |
284 | | - 'ee' => 'Estonia', |
285 | | - 'et' => 'Ethiopia', |
286 | | - 'fk' => 'Falkland Islands (malvinas)', |
287 | | - 'fo' => 'Faroe Islands', |
288 | | - 'fj' => 'Fiji', |
289 | | - 'fi' => 'Finland', |
290 | | - 'fr' => 'France', |
291 | | - 'gf' => 'French Guiana', |
292 | | - 'pf' => 'French Polynesia', |
293 | | - 'tf' => 'French Southern Territories', |
294 | | - 'ga' => 'Gabon', |
295 | | - 'gm' => 'Gambia', |
296 | | - 'ge' => 'Georgia', |
297 | | - 'de' => 'Germany', |
298 | | - 'gh' => 'Ghana', |
299 | | - 'gi' => 'Gibraltar', |
300 | | - 'gr' => 'Greece', |
301 | | - 'gl' => 'Greenland', |
302 | | - 'gd' => 'Grenada', |
303 | | - 'gp' => 'Guadeloupe', |
304 | | - 'gu' => 'Guam', |
305 | | - 'gt' => 'Guatemala', |
306 | | - 'gn' => 'Guinea', |
307 | | - 'gw' => 'Guinea-Bissau', |
308 | | - 'gy' => 'Guyana', |
309 | | - 'ht' => 'Haiti', |
310 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
311 | | - 'va' => 'Holy See (Vatican City)', |
312 | | - 'hn' => 'Honduras', |
313 | | - 'hu' => 'Hungary', |
314 | | - 'is' => 'Iceland', |
315 | | - 'in' => 'India', |
316 | | - 'id' => 'Indonesia', |
317 | | - 'ir' => 'Iran, Islamic Republic of', |
318 | | - 'iq' => 'Iraq', |
319 | | - 'ie' => 'Ireland', |
320 | | - 'il' => 'Israel', |
321 | | - 'it' => 'Italy', |
322 | | - 'jm' => 'Jamaica', |
323 | | - 'jp' => 'Japan', |
324 | | - 'jo' => 'Jordan', |
325 | | - 'kz' => 'Kazakhstan', |
326 | | - 'ke' => 'Kenya', |
327 | | - 'ki' => 'Kiribati', |
328 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
329 | | - 'kr' => 'Republic of Korea', |
330 | | - 'kw' => 'Kuwait', |
331 | | - 'kg' => 'Kyrgyzstan', |
332 | | - 'la' => 'Lao People\'s Democratic Republic', |
333 | | - 'lv' => 'Latvia', |
334 | | - 'lb' => 'Lebanon', |
335 | | - 'ls' => 'Lesotho', |
336 | | - 'lr' => 'Liberia', |
337 | | - 'ly' => 'Libyan Arab Jamahiriya', |
338 | | - 'li' => 'Liechtenstein', |
339 | | - 'lt' => 'Lithuania', |
340 | | - 'lu' => 'Luxembourg', |
341 | | - 'mo' => 'Macao', |
342 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
343 | | - 'mg' => 'Madagascar', |
344 | | - 'mw' => 'Malawi', |
345 | | - 'my' => 'Malaysia', |
346 | | - 'mv' => 'Maldives', |
347 | | - 'ml' => 'Mali', |
348 | | - 'mt' => 'Malta', |
349 | | - 'mh' => 'Marshall Islands', |
350 | | - 'mq' => 'Martinique', |
351 | | - 'mr' => 'Mauritania', |
352 | | - 'mu' => 'Mauritius', |
353 | | - 'yt' => 'Mayotte', |
354 | | - 'mx' => 'Mexico', |
355 | | - 'fm' => 'Micronesia, Federated States of', |
356 | | - 'md' => 'Moldova, Republic of', |
357 | | - 'mc' => 'Monaco SAR', |
358 | | - 'mn' => 'Mongolia', |
| 214 | + 'af' => 'Afghanistan', |
| 215 | + 'ax' => 'Aland Islands', |
| 216 | + 'al' => 'Albania', |
| 217 | + 'dz' => 'Algeria', |
| 218 | + 'as' => 'American Samoa', |
| 219 | + 'ad' => 'Andorra', |
| 220 | + 'ao' => 'Angola', |
| 221 | + 'ai' => 'Anguilla', |
| 222 | + 'aq' => 'Antarctica', |
| 223 | + 'ag' => 'Antigua and Barbuda', |
| 224 | + 'ar' => 'Argentina', |
| 225 | + 'am' => 'Armenia', |
| 226 | + 'aw' => 'Aruba', |
| 227 | + 'au' => 'Australia', |
| 228 | + 'at' => 'Austria', |
| 229 | + 'az' => 'Azerbaijan', |
| 230 | + 'bs' => 'Bahamas', |
| 231 | + 'bh' => 'Bahrain', |
| 232 | + 'bd' => 'Bangladesh', |
| 233 | + 'bb' => 'Barbados', |
| 234 | + 'by' => 'Belarus', |
| 235 | + 'be' => 'Belgium', |
| 236 | + 'bz' => 'Belize', |
| 237 | + 'bj' => 'Benin', |
| 238 | + 'bm' => 'Bermuda', |
| 239 | + 'bt' => 'Bhutan', |
| 240 | + 'bo' => 'Bolivia', |
| 241 | + 'ba' => 'Bosnia and Herzegovina', |
| 242 | + 'bw' => 'Botswana', |
| 243 | + 'bv' => 'Bouvet Island', |
| 244 | + 'br' => 'Brazil', |
| 245 | + 'io' => 'British Indian Ocean Territory', |
| 246 | + 'bn' => 'Brunei Darussalam', |
| 247 | + 'bg' => 'Bulgaria', |
| 248 | + 'bf' => 'Burkina Faso', |
| 249 | + 'mm' => 'Burma (Myanmar)', |
| 250 | + 'bi' => 'Burundi', |
| 251 | + 'kh' => 'Cambodia', |
| 252 | + 'cm' => 'Cameroon', |
| 253 | + 'ca' => 'Canada', |
| 254 | + 'cv' => 'Cape Verde', |
| 255 | + 'ky' => 'Cayman Islands', |
| 256 | + 'cf' => 'Central African Republic', |
| 257 | + 'td' => 'Chad', |
| 258 | + 'cl' => 'Chile', |
| 259 | + 'hk' => 'Hong Kong SAR', |
| 260 | + 'cn' => 'People\'s Republic of China', |
| 261 | + 'tw' => 'Republic of China (Taiwan)', |
| 262 | + 'cx' => 'Christmas Island', |
| 263 | + 'cc' => 'Cocos (keeling) Islands', |
| 264 | + 'co' => 'Colombia', |
| 265 | + 'km' => 'Comoros', |
| 266 | + 'cg' => 'Congo', |
| 267 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 268 | + 'ck' => 'Cook Islands', |
| 269 | + 'cr' => 'Costa Rica', |
| 270 | + 'ci' => 'Cote D\'ivoire', |
| 271 | + 'hr' => 'Croatia', |
| 272 | + 'cu' => 'Cuba', |
| 273 | + 'cy' => 'Cyprus', |
| 274 | + 'cz' => 'Czech Republic', |
| 275 | + 'dk' => 'Denmark', |
| 276 | + 'dj' => 'Djibouti', |
| 277 | + 'dm' => 'Dominica', |
| 278 | + 'do' => 'Dominican Republic', |
| 279 | + 'ec' => 'Ecuador', |
| 280 | + 'eg' => 'Egypt', |
| 281 | + 'sv' => 'El Salvador', |
| 282 | + 'gq' => 'Equatorial Guinea', |
| 283 | + 'er' => 'Eritrea', |
| 284 | + 'ee' => 'Estonia', |
| 285 | + 'et' => 'Ethiopia', |
| 286 | + 'fk' => 'Falkland Islands (malvinas)', |
| 287 | + 'fo' => 'Faroe Islands', |
| 288 | + 'fj' => 'Fiji', |
| 289 | + 'fi' => 'Finland', |
| 290 | + 'fr' => 'France', |
| 291 | + 'gf' => 'French Guiana', |
| 292 | + 'pf' => 'French Polynesia', |
| 293 | + 'tf' => 'French Southern Territories', |
| 294 | + 'ga' => 'Gabon', |
| 295 | + 'gm' => 'Gambia', |
| 296 | + 'ge' => 'Georgia', |
| 297 | + 'de' => 'Germany', |
| 298 | + 'gh' => 'Ghana', |
| 299 | + 'gi' => 'Gibraltar', |
| 300 | + 'gr' => 'Greece', |
| 301 | + 'gl' => 'Greenland', |
| 302 | + 'gd' => 'Grenada', |
| 303 | + 'gp' => 'Guadeloupe', |
| 304 | + 'gu' => 'Guam', |
| 305 | + 'gt' => 'Guatemala', |
| 306 | + 'gn' => 'Guinea', |
| 307 | + 'gw' => 'Guinea-Bissau', |
| 308 | + 'gy' => 'Guyana', |
| 309 | + 'ht' => 'Haiti', |
| 310 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 311 | + 'va' => 'Holy See (Vatican City)', |
| 312 | + 'hn' => 'Honduras', |
| 313 | + 'hu' => 'Hungary', |
| 314 | + 'is' => 'Iceland', |
| 315 | + 'in' => 'India', |
| 316 | + 'id' => 'Indonesia', |
| 317 | + 'ir' => 'Iran, Islamic Republic of', |
| 318 | + 'iq' => 'Iraq', |
| 319 | + 'ie' => 'Ireland', |
| 320 | + 'il' => 'Israel', |
| 321 | + 'it' => 'Italy', |
| 322 | + 'jm' => 'Jamaica', |
| 323 | + 'jp' => 'Japan', |
| 324 | + 'jo' => 'Jordan', |
| 325 | + 'kz' => 'Kazakhstan', |
| 326 | + 'ke' => 'Kenya', |
| 327 | + 'ki' => 'Kiribati', |
| 328 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 329 | + 'kr' => 'Republic of Korea', |
| 330 | + 'kw' => 'Kuwait', |
| 331 | + 'kg' => 'Kyrgyzstan', |
| 332 | + 'la' => 'Lao People\'s Democratic Republic', |
| 333 | + 'lv' => 'Latvia', |
| 334 | + 'lb' => 'Lebanon', |
| 335 | + 'ls' => 'Lesotho', |
| 336 | + 'lr' => 'Liberia', |
| 337 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 338 | + 'li' => 'Liechtenstein', |
| 339 | + 'lt' => 'Lithuania', |
| 340 | + 'lu' => 'Luxembourg', |
| 341 | + 'mo' => 'Macao', |
| 342 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 343 | + 'mg' => 'Madagascar', |
| 344 | + 'mw' => 'Malawi', |
| 345 | + 'my' => 'Malaysia', |
| 346 | + 'mv' => 'Maldives', |
| 347 | + 'ml' => 'Mali', |
| 348 | + 'mt' => 'Malta', |
| 349 | + 'mh' => 'Marshall Islands', |
| 350 | + 'mq' => 'Martinique', |
| 351 | + 'mr' => 'Mauritania', |
| 352 | + 'mu' => 'Mauritius', |
| 353 | + 'yt' => 'Mayotte', |
| 354 | + 'mx' => 'Mexico', |
| 355 | + 'fm' => 'Micronesia, Federated States of', |
| 356 | + 'md' => 'Moldova, Republic of', |
| 357 | + 'mc' => 'Monaco SAR', |
| 358 | + 'mn' => 'Mongolia', |
359 | 359 | 'me' => 'Montenegro', |
360 | | - 'ms' => 'Montserrat', |
361 | | - 'ma' => 'Morocco', |
362 | | - 'mz' => 'Mozambique', |
363 | | - 'na' => 'Namibia', |
364 | | - 'nr' => 'Nauru', |
365 | | - 'np' => 'Nepal', |
366 | | - 'nl' => 'Netherlands', |
367 | | - 'an' => 'Netherlands Antilles', |
368 | | - 'nc' => 'New Caledonia', |
369 | | - 'nz' => 'New Zealand', |
370 | | - 'ni' => 'Nicaragua', |
371 | | - 'ne' => 'Niger', |
372 | | - 'ng' => 'Nigeria', |
373 | | - 'nu' => 'Niue', |
374 | | - 'nf' => 'Norfolk Island', |
375 | | - 'mp' => 'Northern Mariana Islands', |
376 | | - 'no' => 'Norway', |
377 | | - 'om' => 'Oman', |
378 | | - 'pk' => 'Pakistan', |
379 | | - 'pw' => 'Palau', |
380 | | - 'ps' => 'Palestinian Territory', |
381 | | - 'pa' => 'Panama', |
382 | | - 'pg' => 'Papua New Guinea', |
383 | | - 'py' => 'Paraguay', |
384 | | - 'pe' => 'Peru', |
385 | | - 'ph' => 'Philippines', |
386 | | - 'pn' => 'Pitcairn', |
387 | | - 'pl' => 'Poland', |
388 | | - 'pt' => 'Portugal', |
389 | | - 'pr' => 'Puerto Rico', |
390 | | - 'qa' => 'Qatar', |
391 | | - 're' => 'Reunion', |
392 | | - 'ro' => 'Romania', |
393 | | - 'ru' => 'Russian Federation', |
394 | | - 'rw' => 'Rwanda', |
395 | | - 'sh' => 'Saint Helena', |
396 | | - 'kn' => 'Saint Kitts and Nevis', |
397 | | - 'lc' => 'Saint Lucia', |
398 | | - 'pm' => 'Saint Pierre and Miquelon', |
399 | | - 'vc' => 'Saint Vincent and the Grenadines', |
400 | | - 'ws' => 'Samoa', |
401 | | - 'sm' => 'San Marino', |
402 | | - 'st' => 'Sao Tome and Principe', |
403 | | - 'sa' => 'Saudi Arabia', |
404 | | - 'sn' => 'Senegal', |
405 | | - 'rs' => 'Serbia', |
406 | | - 'sc' => 'Seychelles', |
407 | | - 'sl' => 'Sierra Leone', |
408 | | - 'sg' => 'Singapore', |
409 | | - 'sk' => 'Slovakia', |
410 | | - 'si' => 'Slovenia', |
411 | | - 'sb' => 'Solomon Islands', |
412 | | - 'so' => 'Somalia', |
413 | | - 'za' => 'South Africa', |
414 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
415 | | - 'es' => 'Spain', |
416 | | - 'lk' => 'Sri Lanka', |
417 | | - 'sd' => 'Sudan', |
418 | | - 'sr' => 'Suriname', |
419 | | - 'sj' => 'Svalbard and Jan Mayen', |
420 | | - 'sz' => 'Swaziland', |
421 | | - 'se' => 'Sweden', |
422 | | - 'ch' => 'Switzerland', |
423 | | - 'sy' => 'Syrian Arab Republic', |
424 | | - 'tj' => 'Tajikistan', |
425 | | - 'tz' => 'Tanzania, United Republic of', |
426 | | - 'th' => 'Thailand', |
427 | | - 'tl' => 'Timor-leste', |
428 | | - 'tg' => 'Togo', |
429 | | - 'tk' => 'Tokelau', |
430 | | - 'to' => 'Tonga', |
431 | | - 'tt' => 'Trinidad and Tobago', |
432 | | - 'tn' => 'Tunisia', |
433 | | - 'tr' => 'Turkey', |
434 | | - 'tm' => 'Turkmenistan', |
435 | | - 'tc' => 'Turks and Caicos Islands', |
436 | | - 'tv' => 'Tuvalu', |
437 | | - 'ug' => 'Uganda', |
438 | | - 'ua' => 'Ukraine', |
439 | | - 'ae' => 'United Arab Emirates', |
440 | | - 'gb' => 'United Kingdom', |
441 | | - 'us' => 'United States', |
442 | | - 'um' => 'United States Minor Outlying Islands', |
443 | | - 'uy' => 'Uruguay', |
444 | | - 'uz' => 'Uzbekistan', |
445 | | - 'vu' => 'Vanuatu', |
446 | | - 've' => 'Venezuela', |
447 | | - 'vn' => 'Viet Nam', |
448 | | - 'vg' => 'Virgin Islands, British', |
449 | | - 'vi' => 'Virgin Islands, U.S.', |
450 | | - 'wf' => 'Wallis and Futuna', |
451 | | - 'eh' => 'Western Sahara', |
452 | | - 'ye' => 'Yemen', |
453 | | - 'zm' => 'Zambia', |
454 | | - 'zw' => 'Zimbabwe' |
| 360 | + 'ms' => 'Montserrat', |
| 361 | + 'ma' => 'Morocco', |
| 362 | + 'mz' => 'Mozambique', |
| 363 | + 'na' => 'Namibia', |
| 364 | + 'nr' => 'Nauru', |
| 365 | + 'np' => 'Nepal', |
| 366 | + 'nl' => 'Netherlands', |
| 367 | + 'an' => 'Netherlands Antilles', |
| 368 | + 'nc' => 'New Caledonia', |
| 369 | + 'nz' => 'New Zealand', |
| 370 | + 'ni' => 'Nicaragua', |
| 371 | + 'ne' => 'Niger', |
| 372 | + 'ng' => 'Nigeria', |
| 373 | + 'nu' => 'Niue', |
| 374 | + 'nf' => 'Norfolk Island', |
| 375 | + 'mp' => 'Northern Mariana Islands', |
| 376 | + 'no' => 'Norway', |
| 377 | + 'om' => 'Oman', |
| 378 | + 'pk' => 'Pakistan', |
| 379 | + 'pw' => 'Palau', |
| 380 | + 'ps' => 'Palestinian Territory', |
| 381 | + 'pa' => 'Panama', |
| 382 | + 'pg' => 'Papua New Guinea', |
| 383 | + 'py' => 'Paraguay', |
| 384 | + 'pe' => 'Peru', |
| 385 | + 'ph' => 'Philippines', |
| 386 | + 'pn' => 'Pitcairn', |
| 387 | + 'pl' => 'Poland', |
| 388 | + 'pt' => 'Portugal', |
| 389 | + 'pr' => 'Puerto Rico', |
| 390 | + 'qa' => 'Qatar', |
| 391 | + 're' => 'Reunion', |
| 392 | + 'ro' => 'Romania', |
| 393 | + 'ru' => 'Russian Federation', |
| 394 | + 'rw' => 'Rwanda', |
| 395 | + 'sh' => 'Saint Helena', |
| 396 | + 'kn' => 'Saint Kitts and Nevis', |
| 397 | + 'lc' => 'Saint Lucia', |
| 398 | + 'pm' => 'Saint Pierre and Miquelon', |
| 399 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 400 | + 'ws' => 'Samoa', |
| 401 | + 'sm' => 'San Marino', |
| 402 | + 'st' => 'Sao Tome and Principe', |
| 403 | + 'sa' => 'Saudi Arabia', |
| 404 | + 'sn' => 'Senegal', |
| 405 | + 'rs' => 'Serbia', |
| 406 | + 'sc' => 'Seychelles', |
| 407 | + 'sl' => 'Sierra Leone', |
| 408 | + 'sg' => 'Singapore', |
| 409 | + 'sk' => 'Slovakia', |
| 410 | + 'si' => 'Slovenia', |
| 411 | + 'sb' => 'Solomon Islands', |
| 412 | + 'so' => 'Somalia', |
| 413 | + 'za' => 'South Africa', |
| 414 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 415 | + 'es' => 'Spain', |
| 416 | + 'lk' => 'Sri Lanka', |
| 417 | + 'sd' => 'Sudan', |
| 418 | + 'sr' => 'Suriname', |
| 419 | + 'sj' => 'Svalbard and Jan Mayen', |
| 420 | + 'sz' => 'Swaziland', |
| 421 | + 'se' => 'Sweden', |
| 422 | + 'ch' => 'Switzerland', |
| 423 | + 'sy' => 'Syrian Arab Republic', |
| 424 | + 'tj' => 'Tajikistan', |
| 425 | + 'tz' => 'Tanzania, United Republic of', |
| 426 | + 'th' => 'Thailand', |
| 427 | + 'tl' => 'Timor-leste', |
| 428 | + 'tg' => 'Togo', |
| 429 | + 'tk' => 'Tokelau', |
| 430 | + 'to' => 'Tonga', |
| 431 | + 'tt' => 'Trinidad and Tobago', |
| 432 | + 'tn' => 'Tunisia', |
| 433 | + 'tr' => 'Turkey', |
| 434 | + 'tm' => 'Turkmenistan', |
| 435 | + 'tc' => 'Turks and Caicos Islands', |
| 436 | + 'tv' => 'Tuvalu', |
| 437 | + 'ug' => 'Uganda', |
| 438 | + 'ua' => 'Ukraine', |
| 439 | + 'ae' => 'United Arab Emirates', |
| 440 | + 'gb' => 'United Kingdom', |
| 441 | + 'us' => 'United States', |
| 442 | + 'um' => 'United States Minor Outlying Islands', |
| 443 | + 'uy' => 'Uruguay', |
| 444 | + 'uz' => 'Uzbekistan', |
| 445 | + 'vu' => 'Vanuatu', |
| 446 | + 've' => 'Venezuela', |
| 447 | + 'vn' => 'Viet Nam', |
| 448 | + 'vg' => 'Virgin Islands, British', |
| 449 | + 'vi' => 'Virgin Islands, U.S.', |
| 450 | + 'wf' => 'Wallis and Futuna', |
| 451 | + 'eh' => 'Western Sahara', |
| 452 | + 'ye' => 'Yemen', |
| 453 | + 'zm' => 'Zambia', |
| 454 | + 'zw' => 'Zimbabwe' |
455 | 455 | ); |
Index: trunk/wikimania/wmreg/includes/notinuse/language_ja.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => '個人情報', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>個人識別情報</strong></p> |
14 | | - <p>フォームにあなたの個人情報を正しく入力してください。</p> |
| 13 | +' <p><strong>個人識別情報</strong></p> |
| 14 | + <p>フォームにあなたの個人情報を正しく入力してください。</p> |
15 | 15 | ', |
16 | 16 | 'egy' => 'あなたはエジプト・アラブ共和国市民ですか?', |
17 | 17 | 'egy1' => 'はい、そうです(身分証番号と姓名を以下に記入してください)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '日(2桁)', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>言語</strong></p>', |
| 37 | +' <p><strong>言語</strong></p>', |
38 | 38 | 'langn' => '母語', |
39 | 39 | 'lang' => '習熟度', |
40 | 40 | 'select_lang' => '言語を選んでください。', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => '言語3の習熟度', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>ウィキメディア・プロジェクトのアカウントと電子メールアドレス</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>メールアドレスはウィキマニア2008における参加受付および緊急連絡の際にのみ使われます。</li> |
60 | | - </ul> |
| 57 | +' <p><strong>ウィキメディア・プロジェクトのアカウントと電子メールアドレス</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>メールアドレスはウィキマニア2008における参加受付および緊急連絡の際にのみ使われます。</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'ウィキメディア・プロジェクトのアカウント(ひとつ選択)', |
63 | 63 | 'email' => '電子メールアドレス', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => '参加登録', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>参加登録、名札等について</strong></p> |
69 | | - <p>滞在先確保・セッション日程確定・関連サービスなどのため、以下からご希望の日程などをお知らせください。</p> |
| 68 | +' <p><strong>参加登録、名札等について</strong></p> |
| 69 | + <p>滞在先確保・セッション日程確定・関連サービスなどのため、以下からご希望の日程などをお知らせください。</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => '参加日程', |
72 | 72 | 'join1' => '7月17日', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => '運営チームがビザの件にどのように対応したらよいか、ご記入ください(<strong>アラビア語</strong>または<strong>英語</strong>でお願いします)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>宿泊情報</strong></p> |
104 | | - <p>今回、2種類の宿泊形態をご提供できることになりました。ホテル、もしくはサン・マルク・カレッジ宿舎にご滞在いただけます。 |
| 103 | +' <p><strong>宿泊情報</strong></p> |
| 104 | + <p>今回、2種類の宿泊形態をご提供できることになりました。ホテル、もしくはサン・マルク・カレッジ宿舎にご滞在いただけます。 |
105 | 105 | ご登録の前に、<a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>ウィキマニア公式ウェブサイト</a>で宿泊先の所在、宿泊環境をよくお確かめください。</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => '希望する宿泊先', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => '指定なし', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>支払い</strong></p> |
125 | | - <p>(エジプトは含まれない)<a href="http://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103の国・地域から</a>PayPal経由でお支払い可能です。もしくはアレクサンドリア運営チーム所有の銀行口座への振込によってもお支払いいただけます。注意: エジプト人の方はPayPalでお支払いいただけません。</p> |
| 124 | +' <p><strong>支払い</strong></p> |
| 125 | + <p>(エジプトは含まれない)<a href="http://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103の国・地域から</a>PayPal経由でお支払い可能です。もしくはアレクサンドリア運営チーム所有の銀行口座への振込によってもお支払いいただけます。注意: エジプト人の方はPayPalでお支払いいただけません。</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => '支払い種別', |
— | — | @@ -210,247 +210,247 @@ |
211 | 211 | |
212 | 212 | |
213 | 213 | $lang_countries = array( |
214 | | - 'af' => 'Afghanistan', |
215 | | - 'ax' => 'Aland Islands', |
216 | | - 'al' => 'Albania', |
217 | | - 'dz' => 'Algeria', |
218 | | - 'as' => 'American Samoa', |
219 | | - 'ad' => 'Andorra', |
220 | | - 'ao' => 'Angola', |
221 | | - 'ai' => 'Anguilla', |
222 | | - 'aq' => 'Antarctica', |
223 | | - 'ag' => 'Antigua and Barbuda', |
224 | | - 'ar' => 'Argentina', |
225 | | - 'am' => 'Armenia', |
226 | | - 'aw' => 'Aruba', |
227 | | - 'au' => 'Australia', |
228 | | - 'at' => 'Austria', |
229 | | - 'az' => 'Azerbaijan', |
230 | | - 'bs' => 'Bahamas', |
231 | | - 'bh' => 'Bahrain', |
232 | | - 'bd' => 'Bangladesh', |
233 | | - 'bb' => 'Barbados', |
234 | | - 'by' => 'Belarus', |
235 | | - 'be' => 'Belgium', |
236 | | - 'bz' => 'Belize', |
237 | | - 'bj' => 'Benin', |
238 | | - 'bm' => 'Bermuda', |
239 | | - 'bt' => 'Bhutan', |
240 | | - 'bo' => 'Bolivia', |
241 | | - 'ba' => 'Bosnia and Herzegovina', |
242 | | - 'bw' => 'Botswana', |
243 | | - 'bv' => 'Bouvet Island', |
244 | | - 'br' => 'Brazil', |
245 | | - 'io' => 'British Indian Ocean Territory', |
246 | | - 'bn' => 'Brunei Darussalam', |
247 | | - 'bg' => 'Bulgaria', |
248 | | - 'bf' => 'Burkina Faso', |
249 | | - 'mm' => 'Burma (Myanmar)', |
250 | | - 'bi' => 'Burundi', |
251 | | - 'kh' => 'Cambodia', |
252 | | - 'cm' => 'Cameroon', |
253 | | - 'ca' => 'Canada', |
254 | | - 'cv' => 'Cape Verde', |
255 | | - 'ky' => 'Cayman Islands', |
256 | | - 'cf' => 'Central African Republic', |
257 | | - 'td' => 'Chad', |
258 | | - 'cl' => 'Chile', |
259 | | - 'hk' => 'Hong Kong SAR', |
260 | | - 'cn' => 'People\'s Republic of China', |
261 | | - 'tw' => 'Republic of China (Taiwan)', |
262 | | - 'cx' => 'Christmas Island', |
263 | | - 'cc' => 'Cocos (keeling) Islands', |
264 | | - 'co' => 'Colombia', |
265 | | - 'km' => 'Comoros', |
266 | | - 'cg' => 'Congo', |
267 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
268 | | - 'ck' => 'Cook Islands', |
269 | | - 'cr' => 'Costa Rica', |
270 | | - 'ci' => 'Cote D\'ivoire', |
271 | | - 'hr' => 'Croatia', |
272 | | - 'cu' => 'Cuba', |
273 | | - 'cy' => 'Cyprus', |
274 | | - 'cz' => 'Czech Republic', |
275 | | - 'dk' => 'Denmark', |
276 | | - 'dj' => 'Djibouti', |
277 | | - 'dm' => 'Dominica', |
278 | | - 'do' => 'Dominican Republic', |
279 | | - 'ec' => 'Ecuador', |
280 | | - 'eg' => 'Egypt', |
281 | | - 'sv' => 'El Salvador', |
282 | | - 'gq' => 'Equatorial Guinea', |
283 | | - 'er' => 'Eritrea', |
284 | | - 'ee' => 'Estonia', |
285 | | - 'et' => 'Ethiopia', |
286 | | - 'fk' => 'Falkland Islands (malvinas)', |
287 | | - 'fo' => 'Faroe Islands', |
288 | | - 'fj' => 'Fiji', |
289 | | - 'fi' => 'Finland', |
290 | | - 'fr' => 'France', |
291 | | - 'gf' => 'French Guiana', |
292 | | - 'pf' => 'French Polynesia', |
293 | | - 'tf' => 'French Southern Territories', |
294 | | - 'ga' => 'Gabon', |
295 | | - 'gm' => 'Gambia', |
296 | | - 'ge' => 'Georgia', |
297 | | - 'de' => 'Germany', |
298 | | - 'gh' => 'Ghana', |
299 | | - 'gi' => 'Gibraltar', |
300 | | - 'gr' => 'Greece', |
301 | | - 'gl' => 'Greenland', |
302 | | - 'gd' => 'Grenada', |
303 | | - 'gp' => 'Guadeloupe', |
304 | | - 'gu' => 'Guam', |
305 | | - 'gt' => 'Guatemala', |
306 | | - 'gn' => 'Guinea', |
307 | | - 'gw' => 'Guinea-Bissau', |
308 | | - 'gy' => 'Guyana', |
309 | | - 'ht' => 'Haiti', |
310 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
311 | | - 'va' => 'Holy See (Vatican City)', |
312 | | - 'hn' => 'Honduras', |
313 | | - 'hu' => 'Hungary', |
314 | | - 'is' => 'Iceland', |
315 | | - 'in' => 'India', |
316 | | - 'id' => 'Indonesia', |
317 | | - 'ir' => 'Iran, Islamic Republic of', |
318 | | - 'iq' => 'Iraq', |
319 | | - 'ie' => 'Ireland', |
320 | | - 'il' => 'Israel', |
321 | | - 'it' => 'Italy', |
322 | | - 'jm' => 'Jamaica', |
323 | | - 'jp' => 'Japan', |
324 | | - 'jo' => 'Jordan', |
325 | | - 'kz' => 'Kazakhstan', |
326 | | - 'ke' => 'Kenya', |
327 | | - 'ki' => 'Kiribati', |
328 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
329 | | - 'kr' => 'Republic of Korea', |
330 | | - 'kw' => 'Kuwait', |
331 | | - 'kg' => 'Kyrgyzstan', |
332 | | - 'la' => 'Lao People\'s Democratic Republic', |
333 | | - 'lv' => 'Latvia', |
334 | | - 'lb' => 'Lebanon', |
335 | | - 'ls' => 'Lesotho', |
336 | | - 'lr' => 'Liberia', |
337 | | - 'ly' => 'Libyan Arab Jamahiriya', |
338 | | - 'li' => 'Liechtenstein', |
339 | | - 'lt' => 'Lithuania', |
340 | | - 'lu' => 'Luxembourg', |
341 | | - 'mo' => 'Macao', |
342 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
343 | | - 'mg' => 'Madagascar', |
344 | | - 'mw' => 'Malawi', |
345 | | - 'my' => 'Malaysia', |
346 | | - 'mv' => 'Maldives', |
347 | | - 'ml' => 'Mali', |
348 | | - 'mt' => 'Malta', |
349 | | - 'mh' => 'Marshall Islands', |
350 | | - 'mq' => 'Martinique', |
351 | | - 'mr' => 'Mauritania', |
352 | | - 'mu' => 'Mauritius', |
353 | | - 'yt' => 'Mayotte', |
354 | | - 'mx' => 'Mexico', |
355 | | - 'fm' => 'Micronesia, Federated States of', |
356 | | - 'md' => 'Moldova, Republic of', |
357 | | - 'mc' => 'Monaco SAR', |
358 | | - 'mn' => 'Mongolia', |
| 214 | + 'af' => 'Afghanistan', |
| 215 | + 'ax' => 'Aland Islands', |
| 216 | + 'al' => 'Albania', |
| 217 | + 'dz' => 'Algeria', |
| 218 | + 'as' => 'American Samoa', |
| 219 | + 'ad' => 'Andorra', |
| 220 | + 'ao' => 'Angola', |
| 221 | + 'ai' => 'Anguilla', |
| 222 | + 'aq' => 'Antarctica', |
| 223 | + 'ag' => 'Antigua and Barbuda', |
| 224 | + 'ar' => 'Argentina', |
| 225 | + 'am' => 'Armenia', |
| 226 | + 'aw' => 'Aruba', |
| 227 | + 'au' => 'Australia', |
| 228 | + 'at' => 'Austria', |
| 229 | + 'az' => 'Azerbaijan', |
| 230 | + 'bs' => 'Bahamas', |
| 231 | + 'bh' => 'Bahrain', |
| 232 | + 'bd' => 'Bangladesh', |
| 233 | + 'bb' => 'Barbados', |
| 234 | + 'by' => 'Belarus', |
| 235 | + 'be' => 'Belgium', |
| 236 | + 'bz' => 'Belize', |
| 237 | + 'bj' => 'Benin', |
| 238 | + 'bm' => 'Bermuda', |
| 239 | + 'bt' => 'Bhutan', |
| 240 | + 'bo' => 'Bolivia', |
| 241 | + 'ba' => 'Bosnia and Herzegovina', |
| 242 | + 'bw' => 'Botswana', |
| 243 | + 'bv' => 'Bouvet Island', |
| 244 | + 'br' => 'Brazil', |
| 245 | + 'io' => 'British Indian Ocean Territory', |
| 246 | + 'bn' => 'Brunei Darussalam', |
| 247 | + 'bg' => 'Bulgaria', |
| 248 | + 'bf' => 'Burkina Faso', |
| 249 | + 'mm' => 'Burma (Myanmar)', |
| 250 | + 'bi' => 'Burundi', |
| 251 | + 'kh' => 'Cambodia', |
| 252 | + 'cm' => 'Cameroon', |
| 253 | + 'ca' => 'Canada', |
| 254 | + 'cv' => 'Cape Verde', |
| 255 | + 'ky' => 'Cayman Islands', |
| 256 | + 'cf' => 'Central African Republic', |
| 257 | + 'td' => 'Chad', |
| 258 | + 'cl' => 'Chile', |
| 259 | + 'hk' => 'Hong Kong SAR', |
| 260 | + 'cn' => 'People\'s Republic of China', |
| 261 | + 'tw' => 'Republic of China (Taiwan)', |
| 262 | + 'cx' => 'Christmas Island', |
| 263 | + 'cc' => 'Cocos (keeling) Islands', |
| 264 | + 'co' => 'Colombia', |
| 265 | + 'km' => 'Comoros', |
| 266 | + 'cg' => 'Congo', |
| 267 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 268 | + 'ck' => 'Cook Islands', |
| 269 | + 'cr' => 'Costa Rica', |
| 270 | + 'ci' => 'Cote D\'ivoire', |
| 271 | + 'hr' => 'Croatia', |
| 272 | + 'cu' => 'Cuba', |
| 273 | + 'cy' => 'Cyprus', |
| 274 | + 'cz' => 'Czech Republic', |
| 275 | + 'dk' => 'Denmark', |
| 276 | + 'dj' => 'Djibouti', |
| 277 | + 'dm' => 'Dominica', |
| 278 | + 'do' => 'Dominican Republic', |
| 279 | + 'ec' => 'Ecuador', |
| 280 | + 'eg' => 'Egypt', |
| 281 | + 'sv' => 'El Salvador', |
| 282 | + 'gq' => 'Equatorial Guinea', |
| 283 | + 'er' => 'Eritrea', |
| 284 | + 'ee' => 'Estonia', |
| 285 | + 'et' => 'Ethiopia', |
| 286 | + 'fk' => 'Falkland Islands (malvinas)', |
| 287 | + 'fo' => 'Faroe Islands', |
| 288 | + 'fj' => 'Fiji', |
| 289 | + 'fi' => 'Finland', |
| 290 | + 'fr' => 'France', |
| 291 | + 'gf' => 'French Guiana', |
| 292 | + 'pf' => 'French Polynesia', |
| 293 | + 'tf' => 'French Southern Territories', |
| 294 | + 'ga' => 'Gabon', |
| 295 | + 'gm' => 'Gambia', |
| 296 | + 'ge' => 'Georgia', |
| 297 | + 'de' => 'Germany', |
| 298 | + 'gh' => 'Ghana', |
| 299 | + 'gi' => 'Gibraltar', |
| 300 | + 'gr' => 'Greece', |
| 301 | + 'gl' => 'Greenland', |
| 302 | + 'gd' => 'Grenada', |
| 303 | + 'gp' => 'Guadeloupe', |
| 304 | + 'gu' => 'Guam', |
| 305 | + 'gt' => 'Guatemala', |
| 306 | + 'gn' => 'Guinea', |
| 307 | + 'gw' => 'Guinea-Bissau', |
| 308 | + 'gy' => 'Guyana', |
| 309 | + 'ht' => 'Haiti', |
| 310 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 311 | + 'va' => 'Holy See (Vatican City)', |
| 312 | + 'hn' => 'Honduras', |
| 313 | + 'hu' => 'Hungary', |
| 314 | + 'is' => 'Iceland', |
| 315 | + 'in' => 'India', |
| 316 | + 'id' => 'Indonesia', |
| 317 | + 'ir' => 'Iran, Islamic Republic of', |
| 318 | + 'iq' => 'Iraq', |
| 319 | + 'ie' => 'Ireland', |
| 320 | + 'il' => 'Israel', |
| 321 | + 'it' => 'Italy', |
| 322 | + 'jm' => 'Jamaica', |
| 323 | + 'jp' => 'Japan', |
| 324 | + 'jo' => 'Jordan', |
| 325 | + 'kz' => 'Kazakhstan', |
| 326 | + 'ke' => 'Kenya', |
| 327 | + 'ki' => 'Kiribati', |
| 328 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 329 | + 'kr' => 'Republic of Korea', |
| 330 | + 'kw' => 'Kuwait', |
| 331 | + 'kg' => 'Kyrgyzstan', |
| 332 | + 'la' => 'Lao People\'s Democratic Republic', |
| 333 | + 'lv' => 'Latvia', |
| 334 | + 'lb' => 'Lebanon', |
| 335 | + 'ls' => 'Lesotho', |
| 336 | + 'lr' => 'Liberia', |
| 337 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 338 | + 'li' => 'Liechtenstein', |
| 339 | + 'lt' => 'Lithuania', |
| 340 | + 'lu' => 'Luxembourg', |
| 341 | + 'mo' => 'Macao', |
| 342 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 343 | + 'mg' => 'Madagascar', |
| 344 | + 'mw' => 'Malawi', |
| 345 | + 'my' => 'Malaysia', |
| 346 | + 'mv' => 'Maldives', |
| 347 | + 'ml' => 'Mali', |
| 348 | + 'mt' => 'Malta', |
| 349 | + 'mh' => 'Marshall Islands', |
| 350 | + 'mq' => 'Martinique', |
| 351 | + 'mr' => 'Mauritania', |
| 352 | + 'mu' => 'Mauritius', |
| 353 | + 'yt' => 'Mayotte', |
| 354 | + 'mx' => 'Mexico', |
| 355 | + 'fm' => 'Micronesia, Federated States of', |
| 356 | + 'md' => 'Moldova, Republic of', |
| 357 | + 'mc' => 'Monaco SAR', |
| 358 | + 'mn' => 'Mongolia', |
359 | 359 | 'me' => 'Montenegro', |
360 | | - 'ms' => 'Montserrat', |
361 | | - 'ma' => 'Morocco', |
362 | | - 'mz' => 'Mozambique', |
363 | | - 'na' => 'Namibia', |
364 | | - 'nr' => 'Nauru', |
365 | | - 'np' => 'Nepal', |
366 | | - 'nl' => 'Netherlands', |
367 | | - 'an' => 'Netherlands Antilles', |
368 | | - 'nc' => 'New Caledonia', |
369 | | - 'nz' => 'New Zealand', |
370 | | - 'ni' => 'Nicaragua', |
371 | | - 'ne' => 'Niger', |
372 | | - 'ng' => 'Nigeria', |
373 | | - 'nu' => 'Niue', |
374 | | - 'nf' => 'Norfolk Island', |
375 | | - 'mp' => 'Northern Mariana Islands', |
376 | | - 'no' => 'Norway', |
377 | | - 'om' => 'Oman', |
378 | | - 'pk' => 'Pakistan', |
379 | | - 'pw' => 'Palau', |
380 | | - 'ps' => 'Palestinian Territory', |
381 | | - 'pa' => 'Panama', |
382 | | - 'pg' => 'Papua New Guinea', |
383 | | - 'py' => 'Paraguay', |
384 | | - 'pe' => 'Peru', |
385 | | - 'ph' => 'Philippines', |
386 | | - 'pn' => 'Pitcairn', |
387 | | - 'pl' => 'Poland', |
388 | | - 'pt' => 'Portugal', |
389 | | - 'pr' => 'Puerto Rico', |
390 | | - 'qa' => 'Qatar', |
391 | | - 're' => 'Reunion', |
392 | | - 'ro' => 'Romania', |
393 | | - 'ru' => 'Russian Federation', |
394 | | - 'rw' => 'Rwanda', |
395 | | - 'sh' => 'Saint Helena', |
396 | | - 'kn' => 'Saint Kitts and Nevis', |
397 | | - 'lc' => 'Saint Lucia', |
398 | | - 'pm' => 'Saint Pierre and Miquelon', |
399 | | - 'vc' => 'Saint Vincent and the Grenadines', |
400 | | - 'ws' => 'Samoa', |
401 | | - 'sm' => 'San Marino', |
402 | | - 'st' => 'Sao Tome and Principe', |
403 | | - 'sa' => 'Saudi Arabia', |
404 | | - 'sn' => 'Senegal', |
405 | | - 'rs' => 'Serbia', |
406 | | - 'sc' => 'Seychelles', |
407 | | - 'sl' => 'Sierra Leone', |
408 | | - 'sg' => 'Singapore', |
409 | | - 'sk' => 'Slovakia', |
410 | | - 'si' => 'Slovenia', |
411 | | - 'sb' => 'Solomon Islands', |
412 | | - 'so' => 'Somalia', |
413 | | - 'za' => 'South Africa', |
414 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
415 | | - 'es' => 'Spain', |
416 | | - 'lk' => 'Sri Lanka', |
417 | | - 'sd' => 'Sudan', |
418 | | - 'sr' => 'Suriname', |
419 | | - 'sj' => 'Svalbard and Jan Mayen', |
420 | | - 'sz' => 'Swaziland', |
421 | | - 'se' => 'Sweden', |
422 | | - 'ch' => 'Switzerland', |
423 | | - 'sy' => 'Syrian Arab Republic', |
424 | | - 'tj' => 'Tajikistan', |
425 | | - 'tz' => 'Tanzania, United Republic of', |
426 | | - 'th' => 'Thailand', |
427 | | - 'tl' => 'Timor-leste', |
428 | | - 'tg' => 'Togo', |
429 | | - 'tk' => 'Tokelau', |
430 | | - 'to' => 'Tonga', |
431 | | - 'tt' => 'Trinidad and Tobago', |
432 | | - 'tn' => 'Tunisia', |
433 | | - 'tr' => 'Turkey', |
434 | | - 'tm' => 'Turkmenistan', |
435 | | - 'tc' => 'Turks and Caicos Islands', |
436 | | - 'tv' => 'Tuvalu', |
437 | | - 'ug' => 'Uganda', |
438 | | - 'ua' => 'Ukraine', |
439 | | - 'ae' => 'United Arab Emirates', |
440 | | - 'gb' => 'United Kingdom', |
441 | | - 'us' => 'United States', |
442 | | - 'um' => 'United States Minor Outlying Islands', |
443 | | - 'uy' => 'Uruguay', |
444 | | - 'uz' => 'Uzbekistan', |
445 | | - 'vu' => 'Vanuatu', |
446 | | - 've' => 'Venezuela', |
447 | | - 'vn' => 'Viet Nam', |
448 | | - 'vg' => 'Virgin Islands, British', |
449 | | - 'vi' => 'Virgin Islands, U.S.', |
450 | | - 'wf' => 'Wallis and Futuna', |
451 | | - 'eh' => 'Western Sahara', |
452 | | - 'ye' => 'Yemen', |
453 | | - 'zm' => 'Zambia', |
454 | | - 'zw' => 'Zimbabwe' |
| 360 | + 'ms' => 'Montserrat', |
| 361 | + 'ma' => 'Morocco', |
| 362 | + 'mz' => 'Mozambique', |
| 363 | + 'na' => 'Namibia', |
| 364 | + 'nr' => 'Nauru', |
| 365 | + 'np' => 'Nepal', |
| 366 | + 'nl' => 'Netherlands', |
| 367 | + 'an' => 'Netherlands Antilles', |
| 368 | + 'nc' => 'New Caledonia', |
| 369 | + 'nz' => 'New Zealand', |
| 370 | + 'ni' => 'Nicaragua', |
| 371 | + 'ne' => 'Niger', |
| 372 | + 'ng' => 'Nigeria', |
| 373 | + 'nu' => 'Niue', |
| 374 | + 'nf' => 'Norfolk Island', |
| 375 | + 'mp' => 'Northern Mariana Islands', |
| 376 | + 'no' => 'Norway', |
| 377 | + 'om' => 'Oman', |
| 378 | + 'pk' => 'Pakistan', |
| 379 | + 'pw' => 'Palau', |
| 380 | + 'ps' => 'Palestinian Territory', |
| 381 | + 'pa' => 'Panama', |
| 382 | + 'pg' => 'Papua New Guinea', |
| 383 | + 'py' => 'Paraguay', |
| 384 | + 'pe' => 'Peru', |
| 385 | + 'ph' => 'Philippines', |
| 386 | + 'pn' => 'Pitcairn', |
| 387 | + 'pl' => 'Poland', |
| 388 | + 'pt' => 'Portugal', |
| 389 | + 'pr' => 'Puerto Rico', |
| 390 | + 'qa' => 'Qatar', |
| 391 | + 're' => 'Reunion', |
| 392 | + 'ro' => 'Romania', |
| 393 | + 'ru' => 'Russian Federation', |
| 394 | + 'rw' => 'Rwanda', |
| 395 | + 'sh' => 'Saint Helena', |
| 396 | + 'kn' => 'Saint Kitts and Nevis', |
| 397 | + 'lc' => 'Saint Lucia', |
| 398 | + 'pm' => 'Saint Pierre and Miquelon', |
| 399 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 400 | + 'ws' => 'Samoa', |
| 401 | + 'sm' => 'San Marino', |
| 402 | + 'st' => 'Sao Tome and Principe', |
| 403 | + 'sa' => 'Saudi Arabia', |
| 404 | + 'sn' => 'Senegal', |
| 405 | + 'rs' => 'Serbia', |
| 406 | + 'sc' => 'Seychelles', |
| 407 | + 'sl' => 'Sierra Leone', |
| 408 | + 'sg' => 'Singapore', |
| 409 | + 'sk' => 'Slovakia', |
| 410 | + 'si' => 'Slovenia', |
| 411 | + 'sb' => 'Solomon Islands', |
| 412 | + 'so' => 'Somalia', |
| 413 | + 'za' => 'South Africa', |
| 414 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 415 | + 'es' => 'Spain', |
| 416 | + 'lk' => 'Sri Lanka', |
| 417 | + 'sd' => 'Sudan', |
| 418 | + 'sr' => 'Suriname', |
| 419 | + 'sj' => 'Svalbard and Jan Mayen', |
| 420 | + 'sz' => 'Swaziland', |
| 421 | + 'se' => 'Sweden', |
| 422 | + 'ch' => 'Switzerland', |
| 423 | + 'sy' => 'Syrian Arab Republic', |
| 424 | + 'tj' => 'Tajikistan', |
| 425 | + 'tz' => 'Tanzania, United Republic of', |
| 426 | + 'th' => 'Thailand', |
| 427 | + 'tl' => 'Timor-leste', |
| 428 | + 'tg' => 'Togo', |
| 429 | + 'tk' => 'Tokelau', |
| 430 | + 'to' => 'Tonga', |
| 431 | + 'tt' => 'Trinidad and Tobago', |
| 432 | + 'tn' => 'Tunisia', |
| 433 | + 'tr' => 'Turkey', |
| 434 | + 'tm' => 'Turkmenistan', |
| 435 | + 'tc' => 'Turks and Caicos Islands', |
| 436 | + 'tv' => 'Tuvalu', |
| 437 | + 'ug' => 'Uganda', |
| 438 | + 'ua' => 'Ukraine', |
| 439 | + 'ae' => 'United Arab Emirates', |
| 440 | + 'gb' => 'United Kingdom', |
| 441 | + 'us' => 'United States', |
| 442 | + 'um' => 'United States Minor Outlying Islands', |
| 443 | + 'uy' => 'Uruguay', |
| 444 | + 'uz' => 'Uzbekistan', |
| 445 | + 'vu' => 'Vanuatu', |
| 446 | + 've' => 'Venezuela', |
| 447 | + 'vn' => 'Viet Nam', |
| 448 | + 'vg' => 'Virgin Islands, British', |
| 449 | + 'vi' => 'Virgin Islands, U.S.', |
| 450 | + 'wf' => 'Wallis and Futuna', |
| 451 | + 'eh' => 'Western Sahara', |
| 452 | + 'ye' => 'Yemen', |
| 453 | + 'zm' => 'Zambia', |
| 454 | + 'zw' => 'Zimbabwe' |
455 | 455 | ); |
456 | 456 | |
457 | 457 | |
Index: trunk/wikimania/wmreg/includes/notinuse/language_pl.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => 'Dane osobowe', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>Dane identyfikacyjne</strong></p> |
14 | | - <p>Proszę poprawnie wprowadzić swoje dane w formularzu.</p> |
| 13 | +' <p><strong>Dane identyfikacyjne</strong></p> |
| 14 | + <p>Proszę poprawnie wprowadzić swoje dane w formularzu.</p> |
15 | 15 | ', |
16 | 16 | 'egy' => 'Czy jesteś obywatelem Arabskiej Republiki Egiptu?', |
17 | 17 | 'egy1' => 'Tak. (W poniższych polach podaj swój narodowy numer identyfikacyjny oraz nazwisko)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>Znajomość języków</strong></p>', |
| 37 | +' <p><strong>Znajomość języków</strong></p>', |
38 | 38 | 'langn' => 'Język ojczysty', |
39 | 39 | 'lang' => 'Poziom znajomości języka', |
40 | 40 | 'select_lang' => 'Wybierz język', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => 'Poziom znajomości języka 3', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>Projekty Wikimedia i konto/konta e-mail</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>Informacja o twoim koncie będzie wykorzystana wyłącznie do celów rejestracji i pilnych powiadomień o Wikimanii 2008.</li> |
60 | | - </ul> |
| 57 | +' <p><strong>Projekty Wikimedia i konto/konta e-mail</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>Informacja o twoim koncie będzie wykorzystana wyłącznie do celów rejestracji i pilnych powiadomień o Wikimanii 2008.</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'Nazwa głównego projektu Wikimedia', |
63 | 63 | 'email' => 'Twój e-mail', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => 'Uczestnictwo', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>Uczestnictwo, identyfikator i pozostałe</strong></p> |
69 | | - <p>W celu zapewnienia lepszego zakwaterowania, sesji i innych usług prosimy o podanie preferencji w poniższych polach.</p> |
| 68 | +' <p><strong>Uczestnictwo, identyfikator i pozostałe</strong></p> |
| 69 | + <p>W celu zapewnienia lepszego zakwaterowania, sesji i innych usług prosimy o podanie preferencji w poniższych polach.</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => 'Uczestnictwo w dniach', |
72 | 72 | 'join1' => '17 lipca', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => 'Proszę podać jak organizatorzy mogą pomóc w uzyskaniu wizy. (po <strong>arabsku</strong> lub <strong>angielsku</strong>)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>Zakwaterowanie</strong></p> |
104 | | - <p>Udostępniliśmy 2 opcje zakwaterowania. Możesz wybrać pomiędzy 2 hotelami w centrum z pokojami dwuosobowymi lub zamieszkać w akademikach Saint-Marc College. |
| 103 | +' <p><strong>Zakwaterowanie</strong></p> |
| 104 | + <p>Udostępniliśmy 2 opcje zakwaterowania. Możesz wybrać pomiędzy 2 hotelami w centrum z pokojami dwuosobowymi lub zamieszkać w akademikach Saint-Marc College. |
105 | 105 | Sprawdź szczegóły lokalizacji na <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>oficjalnej stronie Wikimanii</a> przed zarejestrowniem.</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => 'Preferowany hotel.', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => 'Bez znaczenia', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>Płatność</strong></p> |
125 | | - <p>Możesz skorzystać ze swojego konta PayPal lub zapłacić kartą kredytową poprzez PayPal w <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 krajach / regionach</a> (Egipt jest z tej usługi wyłączony) lub przelewem na konto bankowe organizatorów w Aleksandrii. Uwaga: płatność przez PayPal jest niedostępna jeśli jesteś Egipcjaninem.</p> |
| 124 | +' <p><strong>Płatność</strong></p> |
| 125 | + <p>Możesz skorzystać ze swojego konta PayPal lub zapłacić kartą kredytową poprzez PayPal w <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 krajach / regionach</a> (Egipt jest z tej usługi wyłączony) lub przelewem na konto bankowe organizatorów w Aleksandrii. Uwaga: płatność przez PayPal jest niedostępna jeśli jesteś Egipcjaninem.</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => 'Rodzaj płatności', |
— | — | @@ -209,245 +209,245 @@ |
210 | 210 | ); |
211 | 211 | |
212 | 212 | $lang_countries = array( |
213 | | - 'af' => 'Afghanistan', |
214 | | - 'ax' => 'Aland Islands', |
215 | | - 'al' => 'Albania', |
216 | | - 'dz' => 'Algeria', |
217 | | - 'as' => 'American Samoa', |
218 | | - 'ad' => 'Andorra', |
219 | | - 'ao' => 'Angola', |
220 | | - 'ai' => 'Anguilla', |
221 | | - 'aq' => 'Antarctica', |
222 | | - 'ag' => 'Antigua and Barbuda', |
223 | | - 'ar' => 'Argentina', |
224 | | - 'am' => 'Armenia', |
225 | | - 'aw' => 'Aruba', |
226 | | - 'au' => 'Australia', |
227 | | - 'at' => 'Austria', |
228 | | - 'az' => 'Azerbaijan', |
229 | | - 'bs' => 'Bahamas', |
230 | | - 'bh' => 'Bahrain', |
231 | | - 'bd' => 'Bangladesh', |
232 | | - 'bb' => 'Barbados', |
233 | | - 'by' => 'Belarus', |
234 | | - 'be' => 'Belgium', |
235 | | - 'bz' => 'Belize', |
236 | | - 'bj' => 'Benin', |
237 | | - 'bm' => 'Bermuda', |
238 | | - 'bt' => 'Bhutan', |
239 | | - 'bo' => 'Bolivia', |
240 | | - 'ba' => 'Bosnia and Herzegovina', |
241 | | - 'bw' => 'Botswana', |
242 | | - 'bv' => 'Bouvet Island', |
243 | | - 'br' => 'Brazil', |
244 | | - 'io' => 'British Indian Ocean Territory', |
245 | | - 'bn' => 'Brunei Darussalam', |
246 | | - 'bg' => 'Bulgaria', |
247 | | - 'bf' => 'Burkina Faso', |
248 | | - 'mm' => 'Burma (Myanmar)', |
249 | | - 'bi' => 'Burundi', |
250 | | - 'kh' => 'Cambodia', |
251 | | - 'cm' => 'Cameroon', |
252 | | - 'ca' => 'Canada', |
253 | | - 'cv' => 'Cape Verde', |
254 | | - 'ky' => 'Cayman Islands', |
255 | | - 'cf' => 'Central African Republic', |
256 | | - 'td' => 'Chad', |
257 | | - 'cl' => 'Chile', |
258 | | - 'hk' => 'Hong Kong SAR', |
259 | | - 'cn' => 'People\'s Republic of China', |
260 | | - 'tw' => 'Republic of China (Taiwan)', |
261 | | - 'cx' => 'Christmas Island', |
262 | | - 'cc' => 'Cocos (keeling) Islands', |
263 | | - 'co' => 'Colombia', |
264 | | - 'km' => 'Comoros', |
265 | | - 'cg' => 'Congo', |
266 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
267 | | - 'ck' => 'Cook Islands', |
268 | | - 'cr' => 'Costa Rica', |
269 | | - 'ci' => 'Cote D\'ivoire', |
270 | | - 'hr' => 'Croatia', |
271 | | - 'cu' => 'Cuba', |
272 | | - 'cy' => 'Cyprus', |
273 | | - 'cz' => 'Czech Republic', |
274 | | - 'dk' => 'Denmark', |
275 | | - 'dj' => 'Djibouti', |
276 | | - 'dm' => 'Dominica', |
277 | | - 'do' => 'Dominican Republic', |
278 | | - 'ec' => 'Ecuador', |
279 | | - 'eg' => 'Egypt', |
280 | | - 'sv' => 'El Salvador', |
281 | | - 'gq' => 'Equatorial Guinea', |
282 | | - 'er' => 'Eritrea', |
283 | | - 'ee' => 'Estonia', |
284 | | - 'et' => 'Ethiopia', |
285 | | - 'fk' => 'Falkland Islands (malvinas)', |
286 | | - 'fo' => 'Faroe Islands', |
287 | | - 'fj' => 'Fiji', |
288 | | - 'fi' => 'Finland', |
289 | | - 'fr' => 'France', |
290 | | - 'gf' => 'French Guiana', |
291 | | - 'pf' => 'French Polynesia', |
292 | | - 'tf' => 'French Southern Territories', |
293 | | - 'ga' => 'Gabon', |
294 | | - 'gm' => 'Gambia', |
295 | | - 'ge' => 'Georgia', |
296 | | - 'de' => 'Germany', |
297 | | - 'gh' => 'Ghana', |
298 | | - 'gi' => 'Gibraltar', |
299 | | - 'gr' => 'Greece', |
300 | | - 'gl' => 'Greenland', |
301 | | - 'gd' => 'Grenada', |
302 | | - 'gp' => 'Guadeloupe', |
303 | | - 'gu' => 'Guam', |
304 | | - 'gt' => 'Guatemala', |
305 | | - 'gn' => 'Guinea', |
306 | | - 'gw' => 'Guinea-Bissau', |
307 | | - 'gy' => 'Guyana', |
308 | | - 'ht' => 'Haiti', |
309 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
310 | | - 'va' => 'Holy See (Vatican City)', |
311 | | - 'hn' => 'Honduras', |
312 | | - 'hu' => 'Hungary', |
313 | | - 'is' => 'Iceland', |
314 | | - 'in' => 'India', |
315 | | - 'id' => 'Indonesia', |
316 | | - 'ir' => 'Iran, Islamic Republic of', |
317 | | - 'iq' => 'Iraq', |
318 | | - 'ie' => 'Ireland', |
319 | | - 'il' => 'Israel', |
320 | | - 'it' => 'Italy', |
321 | | - 'jm' => 'Jamaica', |
322 | | - 'jp' => 'Japan', |
323 | | - 'jo' => 'Jordan', |
324 | | - 'kz' => 'Kazakhstan', |
325 | | - 'ke' => 'Kenya', |
326 | | - 'ki' => 'Kiribati', |
327 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
328 | | - 'kr' => 'Republic of Korea', |
329 | | - 'kw' => 'Kuwait', |
330 | | - 'kg' => 'Kyrgyzstan', |
331 | | - 'la' => 'Lao People\'s Democratic Republic', |
332 | | - 'lv' => 'Latvia', |
333 | | - 'lb' => 'Lebanon', |
334 | | - 'ls' => 'Lesotho', |
335 | | - 'lr' => 'Liberia', |
336 | | - 'ly' => 'Libyan Arab Jamahiriya', |
337 | | - 'li' => 'Liechtenstein', |
338 | | - 'lt' => 'Lithuania', |
339 | | - 'lu' => 'Luxembourg', |
340 | | - 'mo' => 'Macao', |
341 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
342 | | - 'mg' => 'Madagascar', |
343 | | - 'mw' => 'Malawi', |
344 | | - 'my' => 'Malaysia', |
345 | | - 'mv' => 'Maldives', |
346 | | - 'ml' => 'Mali', |
347 | | - 'mt' => 'Malta', |
348 | | - 'mh' => 'Marshall Islands', |
349 | | - 'mq' => 'Martinique', |
350 | | - 'mr' => 'Mauritania', |
351 | | - 'mu' => 'Mauritius', |
352 | | - 'yt' => 'Mayotte', |
353 | | - 'mx' => 'Mexico', |
354 | | - 'fm' => 'Micronesia, Federated States of', |
355 | | - 'md' => 'Moldova, Republic of', |
356 | | - 'mc' => 'Monaco SAR', |
357 | | - 'mn' => 'Mongolia', |
| 213 | + 'af' => 'Afghanistan', |
| 214 | + 'ax' => 'Aland Islands', |
| 215 | + 'al' => 'Albania', |
| 216 | + 'dz' => 'Algeria', |
| 217 | + 'as' => 'American Samoa', |
| 218 | + 'ad' => 'Andorra', |
| 219 | + 'ao' => 'Angola', |
| 220 | + 'ai' => 'Anguilla', |
| 221 | + 'aq' => 'Antarctica', |
| 222 | + 'ag' => 'Antigua and Barbuda', |
| 223 | + 'ar' => 'Argentina', |
| 224 | + 'am' => 'Armenia', |
| 225 | + 'aw' => 'Aruba', |
| 226 | + 'au' => 'Australia', |
| 227 | + 'at' => 'Austria', |
| 228 | + 'az' => 'Azerbaijan', |
| 229 | + 'bs' => 'Bahamas', |
| 230 | + 'bh' => 'Bahrain', |
| 231 | + 'bd' => 'Bangladesh', |
| 232 | + 'bb' => 'Barbados', |
| 233 | + 'by' => 'Belarus', |
| 234 | + 'be' => 'Belgium', |
| 235 | + 'bz' => 'Belize', |
| 236 | + 'bj' => 'Benin', |
| 237 | + 'bm' => 'Bermuda', |
| 238 | + 'bt' => 'Bhutan', |
| 239 | + 'bo' => 'Bolivia', |
| 240 | + 'ba' => 'Bosnia and Herzegovina', |
| 241 | + 'bw' => 'Botswana', |
| 242 | + 'bv' => 'Bouvet Island', |
| 243 | + 'br' => 'Brazil', |
| 244 | + 'io' => 'British Indian Ocean Territory', |
| 245 | + 'bn' => 'Brunei Darussalam', |
| 246 | + 'bg' => 'Bulgaria', |
| 247 | + 'bf' => 'Burkina Faso', |
| 248 | + 'mm' => 'Burma (Myanmar)', |
| 249 | + 'bi' => 'Burundi', |
| 250 | + 'kh' => 'Cambodia', |
| 251 | + 'cm' => 'Cameroon', |
| 252 | + 'ca' => 'Canada', |
| 253 | + 'cv' => 'Cape Verde', |
| 254 | + 'ky' => 'Cayman Islands', |
| 255 | + 'cf' => 'Central African Republic', |
| 256 | + 'td' => 'Chad', |
| 257 | + 'cl' => 'Chile', |
| 258 | + 'hk' => 'Hong Kong SAR', |
| 259 | + 'cn' => 'People\'s Republic of China', |
| 260 | + 'tw' => 'Republic of China (Taiwan)', |
| 261 | + 'cx' => 'Christmas Island', |
| 262 | + 'cc' => 'Cocos (keeling) Islands', |
| 263 | + 'co' => 'Colombia', |
| 264 | + 'km' => 'Comoros', |
| 265 | + 'cg' => 'Congo', |
| 266 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 267 | + 'ck' => 'Cook Islands', |
| 268 | + 'cr' => 'Costa Rica', |
| 269 | + 'ci' => 'Cote D\'ivoire', |
| 270 | + 'hr' => 'Croatia', |
| 271 | + 'cu' => 'Cuba', |
| 272 | + 'cy' => 'Cyprus', |
| 273 | + 'cz' => 'Czech Republic', |
| 274 | + 'dk' => 'Denmark', |
| 275 | + 'dj' => 'Djibouti', |
| 276 | + 'dm' => 'Dominica', |
| 277 | + 'do' => 'Dominican Republic', |
| 278 | + 'ec' => 'Ecuador', |
| 279 | + 'eg' => 'Egypt', |
| 280 | + 'sv' => 'El Salvador', |
| 281 | + 'gq' => 'Equatorial Guinea', |
| 282 | + 'er' => 'Eritrea', |
| 283 | + 'ee' => 'Estonia', |
| 284 | + 'et' => 'Ethiopia', |
| 285 | + 'fk' => 'Falkland Islands (malvinas)', |
| 286 | + 'fo' => 'Faroe Islands', |
| 287 | + 'fj' => 'Fiji', |
| 288 | + 'fi' => 'Finland', |
| 289 | + 'fr' => 'France', |
| 290 | + 'gf' => 'French Guiana', |
| 291 | + 'pf' => 'French Polynesia', |
| 292 | + 'tf' => 'French Southern Territories', |
| 293 | + 'ga' => 'Gabon', |
| 294 | + 'gm' => 'Gambia', |
| 295 | + 'ge' => 'Georgia', |
| 296 | + 'de' => 'Germany', |
| 297 | + 'gh' => 'Ghana', |
| 298 | + 'gi' => 'Gibraltar', |
| 299 | + 'gr' => 'Greece', |
| 300 | + 'gl' => 'Greenland', |
| 301 | + 'gd' => 'Grenada', |
| 302 | + 'gp' => 'Guadeloupe', |
| 303 | + 'gu' => 'Guam', |
| 304 | + 'gt' => 'Guatemala', |
| 305 | + 'gn' => 'Guinea', |
| 306 | + 'gw' => 'Guinea-Bissau', |
| 307 | + 'gy' => 'Guyana', |
| 308 | + 'ht' => 'Haiti', |
| 309 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 310 | + 'va' => 'Holy See (Vatican City)', |
| 311 | + 'hn' => 'Honduras', |
| 312 | + 'hu' => 'Hungary', |
| 313 | + 'is' => 'Iceland', |
| 314 | + 'in' => 'India', |
| 315 | + 'id' => 'Indonesia', |
| 316 | + 'ir' => 'Iran, Islamic Republic of', |
| 317 | + 'iq' => 'Iraq', |
| 318 | + 'ie' => 'Ireland', |
| 319 | + 'il' => 'Israel', |
| 320 | + 'it' => 'Italy', |
| 321 | + 'jm' => 'Jamaica', |
| 322 | + 'jp' => 'Japan', |
| 323 | + 'jo' => 'Jordan', |
| 324 | + 'kz' => 'Kazakhstan', |
| 325 | + 'ke' => 'Kenya', |
| 326 | + 'ki' => 'Kiribati', |
| 327 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 328 | + 'kr' => 'Republic of Korea', |
| 329 | + 'kw' => 'Kuwait', |
| 330 | + 'kg' => 'Kyrgyzstan', |
| 331 | + 'la' => 'Lao People\'s Democratic Republic', |
| 332 | + 'lv' => 'Latvia', |
| 333 | + 'lb' => 'Lebanon', |
| 334 | + 'ls' => 'Lesotho', |
| 335 | + 'lr' => 'Liberia', |
| 336 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 337 | + 'li' => 'Liechtenstein', |
| 338 | + 'lt' => 'Lithuania', |
| 339 | + 'lu' => 'Luxembourg', |
| 340 | + 'mo' => 'Macao', |
| 341 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 342 | + 'mg' => 'Madagascar', |
| 343 | + 'mw' => 'Malawi', |
| 344 | + 'my' => 'Malaysia', |
| 345 | + 'mv' => 'Maldives', |
| 346 | + 'ml' => 'Mali', |
| 347 | + 'mt' => 'Malta', |
| 348 | + 'mh' => 'Marshall Islands', |
| 349 | + 'mq' => 'Martinique', |
| 350 | + 'mr' => 'Mauritania', |
| 351 | + 'mu' => 'Mauritius', |
| 352 | + 'yt' => 'Mayotte', |
| 353 | + 'mx' => 'Mexico', |
| 354 | + 'fm' => 'Micronesia, Federated States of', |
| 355 | + 'md' => 'Moldova, Republic of', |
| 356 | + 'mc' => 'Monaco SAR', |
| 357 | + 'mn' => 'Mongolia', |
358 | 358 | 'me' => 'Montenegro', |
359 | | - 'ms' => 'Montserrat', |
360 | | - 'ma' => 'Morocco', |
361 | | - 'mz' => 'Mozambique', |
362 | | - 'na' => 'Namibia', |
363 | | - 'nr' => 'Nauru', |
364 | | - 'np' => 'Nepal', |
365 | | - 'nl' => 'Netherlands', |
366 | | - 'an' => 'Netherlands Antilles', |
367 | | - 'nc' => 'New Caledonia', |
368 | | - 'nz' => 'New Zealand', |
369 | | - 'ni' => 'Nicaragua', |
370 | | - 'ne' => 'Niger', |
371 | | - 'ng' => 'Nigeria', |
372 | | - 'nu' => 'Niue', |
373 | | - 'nf' => 'Norfolk Island', |
374 | | - 'mp' => 'Northern Mariana Islands', |
375 | | - 'no' => 'Norway', |
376 | | - 'om' => 'Oman', |
377 | | - 'pk' => 'Pakistan', |
378 | | - 'pw' => 'Palau', |
379 | | - 'ps' => 'Palestinian Territory', |
380 | | - 'pa' => 'Panama', |
381 | | - 'pg' => 'Papua New Guinea', |
382 | | - 'py' => 'Paraguay', |
383 | | - 'pe' => 'Peru', |
384 | | - 'ph' => 'Philippines', |
385 | | - 'pn' => 'Pitcairn', |
386 | | - 'pl' => 'Poland', |
387 | | - 'pt' => 'Portugal', |
388 | | - 'pr' => 'Puerto Rico', |
389 | | - 'qa' => 'Qatar', |
390 | | - 're' => 'Reunion', |
391 | | - 'ro' => 'Romania', |
392 | | - 'ru' => 'Russian Federation', |
393 | | - 'rw' => 'Rwanda', |
394 | | - 'sh' => 'Saint Helena', |
395 | | - 'kn' => 'Saint Kitts and Nevis', |
396 | | - 'lc' => 'Saint Lucia', |
397 | | - 'pm' => 'Saint Pierre and Miquelon', |
398 | | - 'vc' => 'Saint Vincent and the Grenadines', |
399 | | - 'ws' => 'Samoa', |
400 | | - 'sm' => 'San Marino', |
401 | | - 'st' => 'Sao Tome and Principe', |
402 | | - 'sa' => 'Saudi Arabia', |
403 | | - 'sn' => 'Senegal', |
404 | | - 'rs' => 'Serbia', |
405 | | - 'sc' => 'Seychelles', |
406 | | - 'sl' => 'Sierra Leone', |
407 | | - 'sg' => 'Singapore', |
408 | | - 'sk' => 'Slovakia', |
409 | | - 'si' => 'Slovenia', |
410 | | - 'sb' => 'Solomon Islands', |
411 | | - 'so' => 'Somalia', |
412 | | - 'za' => 'South Africa', |
413 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
414 | | - 'es' => 'Spain', |
415 | | - 'lk' => 'Sri Lanka', |
416 | | - 'sd' => 'Sudan', |
417 | | - 'sr' => 'Suriname', |
418 | | - 'sj' => 'Svalbard and Jan Mayen', |
419 | | - 'sz' => 'Swaziland', |
420 | | - 'se' => 'Sweden', |
421 | | - 'ch' => 'Switzerland', |
422 | | - 'sy' => 'Syrian Arab Republic', |
423 | | - 'tj' => 'Tajikistan', |
424 | | - 'tz' => 'Tanzania, United Republic of', |
425 | | - 'th' => 'Thailand', |
426 | | - 'tl' => 'Timor-leste', |
427 | | - 'tg' => 'Togo', |
428 | | - 'tk' => 'Tokelau', |
429 | | - 'to' => 'Tonga', |
430 | | - 'tt' => 'Trinidad and Tobago', |
431 | | - 'tn' => 'Tunisia', |
432 | | - 'tr' => 'Turkey', |
433 | | - 'tm' => 'Turkmenistan', |
434 | | - 'tc' => 'Turks and Caicos Islands', |
435 | | - 'tv' => 'Tuvalu', |
436 | | - 'ug' => 'Uganda', |
437 | | - 'ua' => 'Ukraine', |
438 | | - 'ae' => 'United Arab Emirates', |
439 | | - 'gb' => 'United Kingdom', |
440 | | - 'us' => 'United States', |
441 | | - 'um' => 'United States Minor Outlying Islands', |
442 | | - 'uy' => 'Uruguay', |
443 | | - 'uz' => 'Uzbekistan', |
444 | | - 'vu' => 'Vanuatu', |
445 | | - 've' => 'Venezuela', |
446 | | - 'vn' => 'Viet Nam', |
447 | | - 'vg' => 'Virgin Islands, British', |
448 | | - 'vi' => 'Virgin Islands, U.S.', |
449 | | - 'wf' => 'Wallis and Futuna', |
450 | | - 'eh' => 'Western Sahara', |
451 | | - 'ye' => 'Yemen', |
452 | | - 'zm' => 'Zambia', |
453 | | - 'zw' => 'Zimbabwe' |
| 359 | + 'ms' => 'Montserrat', |
| 360 | + 'ma' => 'Morocco', |
| 361 | + 'mz' => 'Mozambique', |
| 362 | + 'na' => 'Namibia', |
| 363 | + 'nr' => 'Nauru', |
| 364 | + 'np' => 'Nepal', |
| 365 | + 'nl' => 'Netherlands', |
| 366 | + 'an' => 'Netherlands Antilles', |
| 367 | + 'nc' => 'New Caledonia', |
| 368 | + 'nz' => 'New Zealand', |
| 369 | + 'ni' => 'Nicaragua', |
| 370 | + 'ne' => 'Niger', |
| 371 | + 'ng' => 'Nigeria', |
| 372 | + 'nu' => 'Niue', |
| 373 | + 'nf' => 'Norfolk Island', |
| 374 | + 'mp' => 'Northern Mariana Islands', |
| 375 | + 'no' => 'Norway', |
| 376 | + 'om' => 'Oman', |
| 377 | + 'pk' => 'Pakistan', |
| 378 | + 'pw' => 'Palau', |
| 379 | + 'ps' => 'Palestinian Territory', |
| 380 | + 'pa' => 'Panama', |
| 381 | + 'pg' => 'Papua New Guinea', |
| 382 | + 'py' => 'Paraguay', |
| 383 | + 'pe' => 'Peru', |
| 384 | + 'ph' => 'Philippines', |
| 385 | + 'pn' => 'Pitcairn', |
| 386 | + 'pl' => 'Poland', |
| 387 | + 'pt' => 'Portugal', |
| 388 | + 'pr' => 'Puerto Rico', |
| 389 | + 'qa' => 'Qatar', |
| 390 | + 're' => 'Reunion', |
| 391 | + 'ro' => 'Romania', |
| 392 | + 'ru' => 'Russian Federation', |
| 393 | + 'rw' => 'Rwanda', |
| 394 | + 'sh' => 'Saint Helena', |
| 395 | + 'kn' => 'Saint Kitts and Nevis', |
| 396 | + 'lc' => 'Saint Lucia', |
| 397 | + 'pm' => 'Saint Pierre and Miquelon', |
| 398 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 399 | + 'ws' => 'Samoa', |
| 400 | + 'sm' => 'San Marino', |
| 401 | + 'st' => 'Sao Tome and Principe', |
| 402 | + 'sa' => 'Saudi Arabia', |
| 403 | + 'sn' => 'Senegal', |
| 404 | + 'rs' => 'Serbia', |
| 405 | + 'sc' => 'Seychelles', |
| 406 | + 'sl' => 'Sierra Leone', |
| 407 | + 'sg' => 'Singapore', |
| 408 | + 'sk' => 'Slovakia', |
| 409 | + 'si' => 'Slovenia', |
| 410 | + 'sb' => 'Solomon Islands', |
| 411 | + 'so' => 'Somalia', |
| 412 | + 'za' => 'South Africa', |
| 413 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 414 | + 'es' => 'Spain', |
| 415 | + 'lk' => 'Sri Lanka', |
| 416 | + 'sd' => 'Sudan', |
| 417 | + 'sr' => 'Suriname', |
| 418 | + 'sj' => 'Svalbard and Jan Mayen', |
| 419 | + 'sz' => 'Swaziland', |
| 420 | + 'se' => 'Sweden', |
| 421 | + 'ch' => 'Switzerland', |
| 422 | + 'sy' => 'Syrian Arab Republic', |
| 423 | + 'tj' => 'Tajikistan', |
| 424 | + 'tz' => 'Tanzania, United Republic of', |
| 425 | + 'th' => 'Thailand', |
| 426 | + 'tl' => 'Timor-leste', |
| 427 | + 'tg' => 'Togo', |
| 428 | + 'tk' => 'Tokelau', |
| 429 | + 'to' => 'Tonga', |
| 430 | + 'tt' => 'Trinidad and Tobago', |
| 431 | + 'tn' => 'Tunisia', |
| 432 | + 'tr' => 'Turkey', |
| 433 | + 'tm' => 'Turkmenistan', |
| 434 | + 'tc' => 'Turks and Caicos Islands', |
| 435 | + 'tv' => 'Tuvalu', |
| 436 | + 'ug' => 'Uganda', |
| 437 | + 'ua' => 'Ukraine', |
| 438 | + 'ae' => 'United Arab Emirates', |
| 439 | + 'gb' => 'United Kingdom', |
| 440 | + 'us' => 'United States', |
| 441 | + 'um' => 'United States Minor Outlying Islands', |
| 442 | + 'uy' => 'Uruguay', |
| 443 | + 'uz' => 'Uzbekistan', |
| 444 | + 'vu' => 'Vanuatu', |
| 445 | + 've' => 'Venezuela', |
| 446 | + 'vn' => 'Viet Nam', |
| 447 | + 'vg' => 'Virgin Islands, British', |
| 448 | + 'vi' => 'Virgin Islands, U.S.', |
| 449 | + 'wf' => 'Wallis and Futuna', |
| 450 | + 'eh' => 'Western Sahara', |
| 451 | + 'ye' => 'Yemen', |
| 452 | + 'zm' => 'Zambia', |
| 453 | + 'zw' => 'Zimbabwe' |
454 | 454 | ); |
Index: trunk/wikimania/wmreg/includes/notinuse/language_it.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => 'Informazioni personali', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>Dati anagrafici</strong></p> |
14 | | - <p>Per favore, inserisci correttamente i tuoi dati anagrafici nel modulo.</p> |
| 13 | +' <p><strong>Dati anagrafici</strong></p> |
| 14 | + <p>Per favore, inserisci correttamente i tuoi dati anagrafici nel modulo.</p> |
15 | 15 | ', |
16 | 16 | 'egy' => 'Sei cittadino della Repubblica Araba d\'Egitto?', |
17 | 17 | 'egy1' => 'Sì, lo sono. (Per favore, immetti il tuo numero di identificazione nazionale e il tuo nome nei campi seguenti.', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>Lingue conosciute</strong></p>', |
| 37 | +' <p><strong>Lingue conosciute</strong></p>', |
38 | 38 | 'langn' => 'Lingua madre', |
39 | 39 | 'lang' => 'Livello di conoscenza', |
40 | 40 | 'select_lang' => 'Seleziona la lingua', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => 'Livello di conoscenza della Lingua 3', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>Progetto Wikimedia e account e-mail</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>Le informazioni relative alla tua e-mail saranno usate unicamente per la registrazione e per comunicazioni urgenti relative a Wikimania 2008.</li> |
60 | | - </ul> |
| 57 | +' <p><strong>Progetto Wikimedia e account e-mail</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>Le informazioni relative alla tua e-mail saranno usate unicamente per la registrazione e per comunicazioni urgenti relative a Wikimania 2008.</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'Account del progetto Wikimedia principale', |
63 | 63 | 'email' => 'La tua e-mail', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => 'Partecipazione', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>Partecipazione, badge e varie</strong></p> |
69 | | - <p>Per una migliore organizzazione relativa ad alloggio, conferenze e altri servizi, indicaci le tue preferenze compilando i campi seguenti.</p> |
| 68 | +' <p><strong>Partecipazione, badge e varie</strong></p> |
| 69 | + <p>Per una migliore organizzazione relativa ad alloggio, conferenze e altri servizi, indicaci le tue preferenze compilando i campi seguenti.</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => 'Date di partecipazione', |
72 | 72 | 'join1' => '17 luglio', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => ' Per favore, illustra come lo staff può aiutarti con questioni relative al visto. (in <strong>arabo</strong> o <strong>inglese</strong>)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>Alloggio</strong></p> |
104 | | - <p>Abbiamo reso possibile la scelta tra due soluzioni per il tuo alloggio, puoi scegliere uno tra i due hotel in centro città, camera doppia. O puoi alloggiare nei dormitori del College Saint-Marc. |
| 103 | +' <p><strong>Alloggio</strong></p> |
| 104 | + <p>Abbiamo reso possibile la scelta tra due soluzioni per il tuo alloggio, puoi scegliere uno tra i due hotel in centro città, camera doppia. O puoi alloggiare nei dormitori del College Saint-Marc. |
105 | 105 | Per favore, prima di registrarti, controlla i dettagli sul <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>sito ufficiale di Wikimania</a> per informazioni precise sulla posizione e le caratteristiche degli alloggi.</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => 'Alloggio scelto', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => 'Indifferente', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>Pagamento</strong></p> |
125 | | - <p>Puoi addebitare sul tuo conto PayPal o pagare tramite la tua carta di credito via PayPal da <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 paesi / regioni</a> (Egitto escluso) o con rimessa e pagamento diretto sul conto bancario intestato al team di organizzazione ad Alexandria. Nota: se sei egiziano, l\'opzione PayPal verrà scartata.</p> |
| 124 | +' <p><strong>Pagamento</strong></p> |
| 125 | + <p>Puoi addebitare sul tuo conto PayPal o pagare tramite la tua carta di credito via PayPal da <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 paesi / regioni</a> (Egitto escluso) o con rimessa e pagamento diretto sul conto bancario intestato al team di organizzazione ad Alexandria. Nota: se sei egiziano, l\'opzione PayPal verrà scartata.</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => 'Tipo di pagamento', |
— | — | @@ -210,246 +210,246 @@ |
211 | 211 | |
212 | 212 | |
213 | 213 | $lang_countries = array( |
214 | | - 'af' => 'Afghanistan', |
215 | | - 'ax' => 'Aland Islands', |
216 | | - 'al' => 'Albania', |
217 | | - 'dz' => 'Algeria', |
218 | | - 'as' => 'American Samoa', |
219 | | - 'ad' => 'Andorra', |
220 | | - 'ao' => 'Angola', |
221 | | - 'ai' => 'Anguilla', |
222 | | - 'aq' => 'Antarctica', |
223 | | - 'ag' => 'Antigua and Barbuda', |
224 | | - 'ar' => 'Argentina', |
225 | | - 'am' => 'Armenia', |
226 | | - 'aw' => 'Aruba', |
227 | | - 'au' => 'Australia', |
228 | | - 'at' => 'Austria', |
229 | | - 'az' => 'Azerbaijan', |
230 | | - 'bs' => 'Bahamas', |
231 | | - 'bh' => 'Bahrain', |
232 | | - 'bd' => 'Bangladesh', |
233 | | - 'bb' => 'Barbados', |
234 | | - 'by' => 'Belarus', |
235 | | - 'be' => 'Belgium', |
236 | | - 'bz' => 'Belize', |
237 | | - 'bj' => 'Benin', |
238 | | - 'bm' => 'Bermuda', |
239 | | - 'bt' => 'Bhutan', |
240 | | - 'bo' => 'Bolivia', |
241 | | - 'ba' => 'Bosnia and Herzegovina', |
242 | | - 'bw' => 'Botswana', |
243 | | - 'bv' => 'Bouvet Island', |
244 | | - 'br' => 'Brazil', |
245 | | - 'io' => 'British Indian Ocean Territory', |
246 | | - 'bn' => 'Brunei Darussalam', |
247 | | - 'bg' => 'Bulgaria', |
248 | | - 'bf' => 'Burkina Faso', |
249 | | - 'mm' => 'Burma (Myanmar)', |
250 | | - 'bi' => 'Burundi', |
251 | | - 'kh' => 'Cambodia', |
252 | | - 'cm' => 'Cameroon', |
253 | | - 'ca' => 'Canada', |
254 | | - 'cv' => 'Cape Verde', |
255 | | - 'ky' => 'Cayman Islands', |
256 | | - 'cf' => 'Central African Republic', |
257 | | - 'td' => 'Chad', |
258 | | - 'cl' => 'Chile', |
259 | | - 'hk' => 'Hong Kong SAR', |
260 | | - 'cn' => 'People\'s Republic of China', |
261 | | - 'tw' => 'Republic of China (Taiwan)', |
262 | | - 'cx' => 'Christmas Island', |
263 | | - 'cc' => 'Cocos (keeling) Islands', |
264 | | - 'co' => 'Colombia', |
265 | | - 'km' => 'Comoros', |
266 | | - 'cg' => 'Congo', |
267 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
268 | | - 'ck' => 'Cook Islands', |
269 | | - 'cr' => 'Costa Rica', |
270 | | - 'ci' => 'Cote D\'ivoire', |
271 | | - 'hr' => 'Croatia', |
272 | | - 'cu' => 'Cuba', |
273 | | - 'cy' => 'Cyprus', |
274 | | - 'cz' => 'Czech Republic', |
275 | | - 'dk' => 'Denmark', |
276 | | - 'dj' => 'Djibouti', |
277 | | - 'dm' => 'Dominica', |
278 | | - 'do' => 'Dominican Republic', |
279 | | - 'ec' => 'Ecuador', |
280 | | - 'eg' => 'Egypt', |
281 | | - 'sv' => 'El Salvador', |
282 | | - 'gq' => 'Equatorial Guinea', |
283 | | - 'er' => 'Eritrea', |
284 | | - 'ee' => 'Estonia', |
285 | | - 'et' => 'Ethiopia', |
286 | | - 'fk' => 'Falkland Islands (malvinas)', |
287 | | - 'fo' => 'Faroe Islands', |
288 | | - 'fj' => 'Fiji', |
289 | | - 'fi' => 'Finland', |
290 | | - 'fr' => 'France', |
291 | | - 'gf' => 'French Guiana', |
292 | | - 'pf' => 'French Polynesia', |
293 | | - 'tf' => 'French Southern Territories', |
294 | | - 'ga' => 'Gabon', |
295 | | - 'gm' => 'Gambia', |
296 | | - 'ge' => 'Georgia', |
297 | | - 'de' => 'Germany', |
298 | | - 'gh' => 'Ghana', |
299 | | - 'gi' => 'Gibraltar', |
300 | | - 'gr' => 'Greece', |
301 | | - 'gl' => 'Greenland', |
302 | | - 'gd' => 'Grenada', |
303 | | - 'gp' => 'Guadeloupe', |
304 | | - 'gu' => 'Guam', |
305 | | - 'gt' => 'Guatemala', |
306 | | - 'gn' => 'Guinea', |
307 | | - 'gw' => 'Guinea-Bissau', |
308 | | - 'gy' => 'Guyana', |
309 | | - 'ht' => 'Haiti', |
310 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
311 | | - 'va' => 'Holy See (Vatican City)', |
312 | | - 'hn' => 'Honduras', |
313 | | - 'hu' => 'Hungary', |
314 | | - 'is' => 'Iceland', |
315 | | - 'in' => 'India', |
316 | | - 'id' => 'Indonesia', |
317 | | - 'ir' => 'Iran, Islamic Republic of', |
318 | | - 'iq' => 'Iraq', |
319 | | - 'ie' => 'Ireland', |
320 | | - 'il' => 'Israel', |
321 | | - 'it' => 'Italy', |
322 | | - 'jm' => 'Jamaica', |
323 | | - 'jp' => 'Japan', |
324 | | - 'jo' => 'Jordan', |
325 | | - 'kz' => 'Kazakhstan', |
326 | | - 'ke' => 'Kenya', |
327 | | - 'ki' => 'Kiribati', |
328 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
329 | | - 'kr' => 'Republic of Korea', |
330 | | - 'kw' => 'Kuwait', |
331 | | - 'kg' => 'Kyrgyzstan', |
332 | | - 'la' => 'Lao People\'s Democratic Republic', |
333 | | - 'lv' => 'Latvia', |
334 | | - 'lb' => 'Lebanon', |
335 | | - 'ls' => 'Lesotho', |
336 | | - 'lr' => 'Liberia', |
337 | | - 'ly' => 'Libyan Arab Jamahiriya', |
338 | | - 'li' => 'Liechtenstein', |
339 | | - 'lt' => 'Lithuania', |
340 | | - 'lu' => 'Luxembourg', |
341 | | - 'mo' => 'Macao', |
342 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
343 | | - 'mg' => 'Madagascar', |
344 | | - 'mw' => 'Malawi', |
345 | | - 'my' => 'Malaysia', |
346 | | - 'mv' => 'Maldives', |
347 | | - 'ml' => 'Mali', |
348 | | - 'mt' => 'Malta', |
349 | | - 'mh' => 'Marshall Islands', |
350 | | - 'mq' => 'Martinique', |
351 | | - 'mr' => 'Mauritania', |
352 | | - 'mu' => 'Mauritius', |
353 | | - 'yt' => 'Mayotte', |
354 | | - 'mx' => 'Mexico', |
355 | | - 'fm' => 'Micronesia, Federated States of', |
356 | | - 'md' => 'Moldova, Republic of', |
357 | | - 'mc' => 'Monaco SAR', |
358 | | - 'mn' => 'Mongolia', |
| 214 | + 'af' => 'Afghanistan', |
| 215 | + 'ax' => 'Aland Islands', |
| 216 | + 'al' => 'Albania', |
| 217 | + 'dz' => 'Algeria', |
| 218 | + 'as' => 'American Samoa', |
| 219 | + 'ad' => 'Andorra', |
| 220 | + 'ao' => 'Angola', |
| 221 | + 'ai' => 'Anguilla', |
| 222 | + 'aq' => 'Antarctica', |
| 223 | + 'ag' => 'Antigua and Barbuda', |
| 224 | + 'ar' => 'Argentina', |
| 225 | + 'am' => 'Armenia', |
| 226 | + 'aw' => 'Aruba', |
| 227 | + 'au' => 'Australia', |
| 228 | + 'at' => 'Austria', |
| 229 | + 'az' => 'Azerbaijan', |
| 230 | + 'bs' => 'Bahamas', |
| 231 | + 'bh' => 'Bahrain', |
| 232 | + 'bd' => 'Bangladesh', |
| 233 | + 'bb' => 'Barbados', |
| 234 | + 'by' => 'Belarus', |
| 235 | + 'be' => 'Belgium', |
| 236 | + 'bz' => 'Belize', |
| 237 | + 'bj' => 'Benin', |
| 238 | + 'bm' => 'Bermuda', |
| 239 | + 'bt' => 'Bhutan', |
| 240 | + 'bo' => 'Bolivia', |
| 241 | + 'ba' => 'Bosnia and Herzegovina', |
| 242 | + 'bw' => 'Botswana', |
| 243 | + 'bv' => 'Bouvet Island', |
| 244 | + 'br' => 'Brazil', |
| 245 | + 'io' => 'British Indian Ocean Territory', |
| 246 | + 'bn' => 'Brunei Darussalam', |
| 247 | + 'bg' => 'Bulgaria', |
| 248 | + 'bf' => 'Burkina Faso', |
| 249 | + 'mm' => 'Burma (Myanmar)', |
| 250 | + 'bi' => 'Burundi', |
| 251 | + 'kh' => 'Cambodia', |
| 252 | + 'cm' => 'Cameroon', |
| 253 | + 'ca' => 'Canada', |
| 254 | + 'cv' => 'Cape Verde', |
| 255 | + 'ky' => 'Cayman Islands', |
| 256 | + 'cf' => 'Central African Republic', |
| 257 | + 'td' => 'Chad', |
| 258 | + 'cl' => 'Chile', |
| 259 | + 'hk' => 'Hong Kong SAR', |
| 260 | + 'cn' => 'People\'s Republic of China', |
| 261 | + 'tw' => 'Republic of China (Taiwan)', |
| 262 | + 'cx' => 'Christmas Island', |
| 263 | + 'cc' => 'Cocos (keeling) Islands', |
| 264 | + 'co' => 'Colombia', |
| 265 | + 'km' => 'Comoros', |
| 266 | + 'cg' => 'Congo', |
| 267 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 268 | + 'ck' => 'Cook Islands', |
| 269 | + 'cr' => 'Costa Rica', |
| 270 | + 'ci' => 'Cote D\'ivoire', |
| 271 | + 'hr' => 'Croatia', |
| 272 | + 'cu' => 'Cuba', |
| 273 | + 'cy' => 'Cyprus', |
| 274 | + 'cz' => 'Czech Republic', |
| 275 | + 'dk' => 'Denmark', |
| 276 | + 'dj' => 'Djibouti', |
| 277 | + 'dm' => 'Dominica', |
| 278 | + 'do' => 'Dominican Republic', |
| 279 | + 'ec' => 'Ecuador', |
| 280 | + 'eg' => 'Egypt', |
| 281 | + 'sv' => 'El Salvador', |
| 282 | + 'gq' => 'Equatorial Guinea', |
| 283 | + 'er' => 'Eritrea', |
| 284 | + 'ee' => 'Estonia', |
| 285 | + 'et' => 'Ethiopia', |
| 286 | + 'fk' => 'Falkland Islands (malvinas)', |
| 287 | + 'fo' => 'Faroe Islands', |
| 288 | + 'fj' => 'Fiji', |
| 289 | + 'fi' => 'Finland', |
| 290 | + 'fr' => 'France', |
| 291 | + 'gf' => 'French Guiana', |
| 292 | + 'pf' => 'French Polynesia', |
| 293 | + 'tf' => 'French Southern Territories', |
| 294 | + 'ga' => 'Gabon', |
| 295 | + 'gm' => 'Gambia', |
| 296 | + 'ge' => 'Georgia', |
| 297 | + 'de' => 'Germany', |
| 298 | + 'gh' => 'Ghana', |
| 299 | + 'gi' => 'Gibraltar', |
| 300 | + 'gr' => 'Greece', |
| 301 | + 'gl' => 'Greenland', |
| 302 | + 'gd' => 'Grenada', |
| 303 | + 'gp' => 'Guadeloupe', |
| 304 | + 'gu' => 'Guam', |
| 305 | + 'gt' => 'Guatemala', |
| 306 | + 'gn' => 'Guinea', |
| 307 | + 'gw' => 'Guinea-Bissau', |
| 308 | + 'gy' => 'Guyana', |
| 309 | + 'ht' => 'Haiti', |
| 310 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 311 | + 'va' => 'Holy See (Vatican City)', |
| 312 | + 'hn' => 'Honduras', |
| 313 | + 'hu' => 'Hungary', |
| 314 | + 'is' => 'Iceland', |
| 315 | + 'in' => 'India', |
| 316 | + 'id' => 'Indonesia', |
| 317 | + 'ir' => 'Iran, Islamic Republic of', |
| 318 | + 'iq' => 'Iraq', |
| 319 | + 'ie' => 'Ireland', |
| 320 | + 'il' => 'Israel', |
| 321 | + 'it' => 'Italy', |
| 322 | + 'jm' => 'Jamaica', |
| 323 | + 'jp' => 'Japan', |
| 324 | + 'jo' => 'Jordan', |
| 325 | + 'kz' => 'Kazakhstan', |
| 326 | + 'ke' => 'Kenya', |
| 327 | + 'ki' => 'Kiribati', |
| 328 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 329 | + 'kr' => 'Republic of Korea', |
| 330 | + 'kw' => 'Kuwait', |
| 331 | + 'kg' => 'Kyrgyzstan', |
| 332 | + 'la' => 'Lao People\'s Democratic Republic', |
| 333 | + 'lv' => 'Latvia', |
| 334 | + 'lb' => 'Lebanon', |
| 335 | + 'ls' => 'Lesotho', |
| 336 | + 'lr' => 'Liberia', |
| 337 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 338 | + 'li' => 'Liechtenstein', |
| 339 | + 'lt' => 'Lithuania', |
| 340 | + 'lu' => 'Luxembourg', |
| 341 | + 'mo' => 'Macao', |
| 342 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 343 | + 'mg' => 'Madagascar', |
| 344 | + 'mw' => 'Malawi', |
| 345 | + 'my' => 'Malaysia', |
| 346 | + 'mv' => 'Maldives', |
| 347 | + 'ml' => 'Mali', |
| 348 | + 'mt' => 'Malta', |
| 349 | + 'mh' => 'Marshall Islands', |
| 350 | + 'mq' => 'Martinique', |
| 351 | + 'mr' => 'Mauritania', |
| 352 | + 'mu' => 'Mauritius', |
| 353 | + 'yt' => 'Mayotte', |
| 354 | + 'mx' => 'Mexico', |
| 355 | + 'fm' => 'Micronesia, Federated States of', |
| 356 | + 'md' => 'Moldova, Republic of', |
| 357 | + 'mc' => 'Monaco SAR', |
| 358 | + 'mn' => 'Mongolia', |
359 | 359 | 'me' => 'Montenegro', |
360 | | - 'ms' => 'Montserrat', |
361 | | - 'ma' => 'Morocco', |
362 | | - 'mz' => 'Mozambique', |
363 | | - 'na' => 'Namibia', |
364 | | - 'nr' => 'Nauru', |
365 | | - 'np' => 'Nepal', |
366 | | - 'nl' => 'Netherlands', |
367 | | - 'an' => 'Netherlands Antilles', |
368 | | - 'nc' => 'New Caledonia', |
369 | | - 'nz' => 'New Zealand', |
370 | | - 'ni' => 'Nicaragua', |
371 | | - 'ne' => 'Niger', |
372 | | - 'ng' => 'Nigeria', |
373 | | - 'nu' => 'Niue', |
374 | | - 'nf' => 'Norfolk Island', |
375 | | - 'mp' => 'Northern Mariana Islands', |
376 | | - 'no' => 'Norway', |
377 | | - 'om' => 'Oman', |
378 | | - 'pk' => 'Pakistan', |
379 | | - 'pw' => 'Palau', |
380 | | - 'ps' => 'Palestinian Territory', |
381 | | - 'pa' => 'Panama', |
382 | | - 'pg' => 'Papua New Guinea', |
383 | | - 'py' => 'Paraguay', |
384 | | - 'pe' => 'Peru', |
385 | | - 'ph' => 'Philippines', |
386 | | - 'pn' => 'Pitcairn', |
387 | | - 'pl' => 'Poland', |
388 | | - 'pt' => 'Portugal', |
389 | | - 'pr' => 'Puerto Rico', |
390 | | - 'qa' => 'Qatar', |
391 | | - 're' => 'Reunion', |
392 | | - 'ro' => 'Romania', |
393 | | - 'ru' => 'Russian Federation', |
394 | | - 'rw' => 'Rwanda', |
395 | | - 'sh' => 'Saint Helena', |
396 | | - 'kn' => 'Saint Kitts and Nevis', |
397 | | - 'lc' => 'Saint Lucia', |
398 | | - 'pm' => 'Saint Pierre and Miquelon', |
399 | | - 'vc' => 'Saint Vincent and the Grenadines', |
400 | | - 'ws' => 'Samoa', |
401 | | - 'sm' => 'San Marino', |
402 | | - 'st' => 'Sao Tome and Principe', |
403 | | - 'sa' => 'Saudi Arabia', |
404 | | - 'sn' => 'Senegal', |
405 | | - 'rs' => 'Serbia', |
406 | | - 'sc' => 'Seychelles', |
407 | | - 'sl' => 'Sierra Leone', |
408 | | - 'sg' => 'Singapore', |
409 | | - 'sk' => 'Slovakia', |
410 | | - 'si' => 'Slovenia', |
411 | | - 'sb' => 'Solomon Islands', |
412 | | - 'so' => 'Somalia', |
413 | | - 'za' => 'South Africa', |
414 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
415 | | - 'es' => 'Spain', |
416 | | - 'lk' => 'Sri Lanka', |
417 | | - 'sd' => 'Sudan', |
418 | | - 'sr' => 'Suriname', |
419 | | - 'sj' => 'Svalbard and Jan Mayen', |
420 | | - 'sz' => 'Swaziland', |
421 | | - 'se' => 'Sweden', |
422 | | - 'ch' => 'Switzerland', |
423 | | - 'sy' => 'Syrian Arab Republic', |
424 | | - 'tj' => 'Tajikistan', |
425 | | - 'tz' => 'Tanzania, United Republic of', |
426 | | - 'th' => 'Thailand', |
427 | | - 'tl' => 'Timor-leste', |
428 | | - 'tg' => 'Togo', |
429 | | - 'tk' => 'Tokelau', |
430 | | - 'to' => 'Tonga', |
431 | | - 'tt' => 'Trinidad and Tobago', |
432 | | - 'tn' => 'Tunisia', |
433 | | - 'tr' => 'Turkey', |
434 | | - 'tm' => 'Turkmenistan', |
435 | | - 'tc' => 'Turks and Caicos Islands', |
436 | | - 'tv' => 'Tuvalu', |
437 | | - 'ug' => 'Uganda', |
438 | | - 'ua' => 'Ukraine', |
439 | | - 'ae' => 'United Arab Emirates', |
440 | | - 'gb' => 'United Kingdom', |
441 | | - 'us' => 'United States', |
442 | | - 'um' => 'United States Minor Outlying Islands', |
443 | | - 'uy' => 'Uruguay', |
444 | | - 'uz' => 'Uzbekistan', |
445 | | - 'vu' => 'Vanuatu', |
446 | | - 've' => 'Venezuela', |
447 | | - 'vn' => 'Viet Nam', |
448 | | - 'vg' => 'Virgin Islands, British', |
449 | | - 'vi' => 'Virgin Islands, U.S.', |
450 | | - 'wf' => 'Wallis and Futuna', |
451 | | - 'eh' => 'Western Sahara', |
452 | | - 'ye' => 'Yemen', |
453 | | - 'zm' => 'Zambia', |
454 | | - 'zw' => 'Zimbabwe' |
| 360 | + 'ms' => 'Montserrat', |
| 361 | + 'ma' => 'Morocco', |
| 362 | + 'mz' => 'Mozambique', |
| 363 | + 'na' => 'Namibia', |
| 364 | + 'nr' => 'Nauru', |
| 365 | + 'np' => 'Nepal', |
| 366 | + 'nl' => 'Netherlands', |
| 367 | + 'an' => 'Netherlands Antilles', |
| 368 | + 'nc' => 'New Caledonia', |
| 369 | + 'nz' => 'New Zealand', |
| 370 | + 'ni' => 'Nicaragua', |
| 371 | + 'ne' => 'Niger', |
| 372 | + 'ng' => 'Nigeria', |
| 373 | + 'nu' => 'Niue', |
| 374 | + 'nf' => 'Norfolk Island', |
| 375 | + 'mp' => 'Northern Mariana Islands', |
| 376 | + 'no' => 'Norway', |
| 377 | + 'om' => 'Oman', |
| 378 | + 'pk' => 'Pakistan', |
| 379 | + 'pw' => 'Palau', |
| 380 | + 'ps' => 'Palestinian Territory', |
| 381 | + 'pa' => 'Panama', |
| 382 | + 'pg' => 'Papua New Guinea', |
| 383 | + 'py' => 'Paraguay', |
| 384 | + 'pe' => 'Peru', |
| 385 | + 'ph' => 'Philippines', |
| 386 | + 'pn' => 'Pitcairn', |
| 387 | + 'pl' => 'Poland', |
| 388 | + 'pt' => 'Portugal', |
| 389 | + 'pr' => 'Puerto Rico', |
| 390 | + 'qa' => 'Qatar', |
| 391 | + 're' => 'Reunion', |
| 392 | + 'ro' => 'Romania', |
| 393 | + 'ru' => 'Russian Federation', |
| 394 | + 'rw' => 'Rwanda', |
| 395 | + 'sh' => 'Saint Helena', |
| 396 | + 'kn' => 'Saint Kitts and Nevis', |
| 397 | + 'lc' => 'Saint Lucia', |
| 398 | + 'pm' => 'Saint Pierre and Miquelon', |
| 399 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 400 | + 'ws' => 'Samoa', |
| 401 | + 'sm' => 'San Marino', |
| 402 | + 'st' => 'Sao Tome and Principe', |
| 403 | + 'sa' => 'Saudi Arabia', |
| 404 | + 'sn' => 'Senegal', |
| 405 | + 'rs' => 'Serbia', |
| 406 | + 'sc' => 'Seychelles', |
| 407 | + 'sl' => 'Sierra Leone', |
| 408 | + 'sg' => 'Singapore', |
| 409 | + 'sk' => 'Slovakia', |
| 410 | + 'si' => 'Slovenia', |
| 411 | + 'sb' => 'Solomon Islands', |
| 412 | + 'so' => 'Somalia', |
| 413 | + 'za' => 'South Africa', |
| 414 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 415 | + 'es' => 'Spain', |
| 416 | + 'lk' => 'Sri Lanka', |
| 417 | + 'sd' => 'Sudan', |
| 418 | + 'sr' => 'Suriname', |
| 419 | + 'sj' => 'Svalbard and Jan Mayen', |
| 420 | + 'sz' => 'Swaziland', |
| 421 | + 'se' => 'Sweden', |
| 422 | + 'ch' => 'Switzerland', |
| 423 | + 'sy' => 'Syrian Arab Republic', |
| 424 | + 'tj' => 'Tajikistan', |
| 425 | + 'tz' => 'Tanzania, United Republic of', |
| 426 | + 'th' => 'Thailand', |
| 427 | + 'tl' => 'Timor-leste', |
| 428 | + 'tg' => 'Togo', |
| 429 | + 'tk' => 'Tokelau', |
| 430 | + 'to' => 'Tonga', |
| 431 | + 'tt' => 'Trinidad and Tobago', |
| 432 | + 'tn' => 'Tunisia', |
| 433 | + 'tr' => 'Turkey', |
| 434 | + 'tm' => 'Turkmenistan', |
| 435 | + 'tc' => 'Turks and Caicos Islands', |
| 436 | + 'tv' => 'Tuvalu', |
| 437 | + 'ug' => 'Uganda', |
| 438 | + 'ua' => 'Ukraine', |
| 439 | + 'ae' => 'United Arab Emirates', |
| 440 | + 'gb' => 'United Kingdom', |
| 441 | + 'us' => 'United States', |
| 442 | + 'um' => 'United States Minor Outlying Islands', |
| 443 | + 'uy' => 'Uruguay', |
| 444 | + 'uz' => 'Uzbekistan', |
| 445 | + 'vu' => 'Vanuatu', |
| 446 | + 've' => 'Venezuela', |
| 447 | + 'vn' => 'Viet Nam', |
| 448 | + 'vg' => 'Virgin Islands, British', |
| 449 | + 'vi' => 'Virgin Islands, U.S.', |
| 450 | + 'wf' => 'Wallis and Futuna', |
| 451 | + 'eh' => 'Western Sahara', |
| 452 | + 'ye' => 'Yemen', |
| 453 | + 'zm' => 'Zambia', |
| 454 | + 'zw' => 'Zimbabwe' |
455 | 455 | ); |
456 | 456 | |
Index: trunk/wikimania/wmreg/includes/notinuse/language_nb.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => 'Personinformasjon', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>Personlig data for identifisering</strong></p> |
14 | | - <p>Vennligst fyll inn dine personlige data korrekt.</p> |
| 13 | +' <p><strong>Personlig data for identifisering</strong></p> |
| 14 | + <p>Vennligst fyll inn dine personlige data korrekt.</p> |
15 | 15 | ', |
16 | 16 | 'egy' => 'Er du en innbygger i Egypt?', |
17 | 17 | 'egy1' => 'Ja, det er jeg. (Vennligst skriv inn ditt nasjonale identifikasjonsnummer og ditt navn i følgende felt)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>Lingvistisk ferdighet</strong></p>', |
| 37 | +' <p><strong>Lingvistisk ferdighet</strong></p>', |
38 | 38 | 'langn' => 'Morsmål', |
39 | 39 | 'lang' => 'Ferdighetsnivå', |
40 | 40 | 'select_lang' => 'Velg språket', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => 'Ferdighetsnivå for språk 3', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>Wikimedia-prosjekt og e-postkontoer</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>Din e-postadresse blir brukt til registrering og viktige meldinger rundt Wikimania 2008.</li> |
60 | | - </ul> |
| 57 | +' <p><strong>Wikimedia-prosjekt og e-postkontoer</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>Din e-postadresse blir brukt til registrering og viktige meldinger rundt Wikimania 2008.</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'Ønsket Wikimedia-prosjekt-kontonavn', |
63 | 63 | 'email' => 'Din e-postadresse', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => 'Deltagelse', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>Deltagelse, skiltinformasjon og diverse</strong></p> |
69 | | - <p>For bedre administrering av losji, track sessions og relaterte tjenester, vennligst fortell oss dine preferanser for følgende områder.</p> |
| 68 | +' <p><strong>Deltagelse, skiltinformasjon og diverse</strong></p> |
| 69 | + <p>For bedre administrering av losji, track sessions og relaterte tjenester, vennligst fortell oss dine preferanser for følgende områder.</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => 'Tid for deltagelse', |
72 | 72 | 'join1' => '17. juli', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => ' Vennligst spesifiser hvordan organisasjonslaget kan hjelpe deg med visumproblemer. (på <strong>arabisk</strong> eller <strong>engelsk</strong>)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>Losji</strong></p> |
104 | | - <p>Vi har lagd to muligheter for deg angående losji. Du kan bo på hotell eller på Saint-Marc Colleges sovesaler. |
| 103 | +' <p><strong>Losji</strong></p> |
| 104 | + <p>Vi har lagd to muligheter for deg angående losji. Du kan bo på hotell eller på Saint-Marc Colleges sovesaler. |
105 | 105 | Vennligst se detaljer på <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>Wikimanias offisielle nettside</a> for presis plassering og spesifikasjoner for hvert valg før du registrerer.</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => 'Ønsket hotell.', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => 'Bryr meg ikke', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>Betaling</strong></p> |
125 | | - <p>Du kan belaste din PayPal-konto eller betale med kredittkort via PayPal 1 <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 land / regioner</a> (Egypt er ikke inkludert) eller via remisse og direkte betaling til bankkontoen til organisasjonslaget i Alexandria. Merk: PayPal-muligheten frafaller hvis du er egyptisk</p> |
| 124 | +' <p><strong>Betaling</strong></p> |
| 125 | + <p>Du kan belaste din PayPal-konto eller betale med kredittkort via PayPal 1 <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 land / regioner</a> (Egypt er ikke inkludert) eller via remisse og direkte betaling til bankkontoen til organisasjonslaget i Alexandria. Merk: PayPal-muligheten frafaller hvis du er egyptisk</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => 'Betalingsmåte', |
— | — | @@ -210,246 +210,246 @@ |
211 | 211 | |
212 | 212 | |
213 | 213 | $lang_countries = array( |
214 | | - 'af' => 'Afghanistan', |
215 | | - 'ax' => 'Aland Islands', |
216 | | - 'al' => 'Albania', |
217 | | - 'dz' => 'Algeria', |
218 | | - 'as' => 'American Samoa', |
219 | | - 'ad' => 'Andorra', |
220 | | - 'ao' => 'Angola', |
221 | | - 'ai' => 'Anguilla', |
222 | | - 'aq' => 'Antarctica', |
223 | | - 'ag' => 'Antigua and Barbuda', |
224 | | - 'ar' => 'Argentina', |
225 | | - 'am' => 'Armenia', |
226 | | - 'aw' => 'Aruba', |
227 | | - 'au' => 'Australia', |
228 | | - 'at' => 'Austria', |
229 | | - 'az' => 'Azerbaijan', |
230 | | - 'bs' => 'Bahamas', |
231 | | - 'bh' => 'Bahrain', |
232 | | - 'bd' => 'Bangladesh', |
233 | | - 'bb' => 'Barbados', |
234 | | - 'by' => 'Belarus', |
235 | | - 'be' => 'Belgium', |
236 | | - 'bz' => 'Belize', |
237 | | - 'bj' => 'Benin', |
238 | | - 'bm' => 'Bermuda', |
239 | | - 'bt' => 'Bhutan', |
240 | | - 'bo' => 'Bolivia', |
241 | | - 'ba' => 'Bosnia and Herzegovina', |
242 | | - 'bw' => 'Botswana', |
243 | | - 'bv' => 'Bouvet Island', |
244 | | - 'br' => 'Brazil', |
245 | | - 'io' => 'British Indian Ocean Territory', |
246 | | - 'bn' => 'Brunei Darussalam', |
247 | | - 'bg' => 'Bulgaria', |
248 | | - 'bf' => 'Burkina Faso', |
249 | | - 'mm' => 'Burma (Myanmar)', |
250 | | - 'bi' => 'Burundi', |
251 | | - 'kh' => 'Cambodia', |
252 | | - 'cm' => 'Cameroon', |
253 | | - 'ca' => 'Canada', |
254 | | - 'cv' => 'Cape Verde', |
255 | | - 'ky' => 'Cayman Islands', |
256 | | - 'cf' => 'Central African Republic', |
257 | | - 'td' => 'Chad', |
258 | | - 'cl' => 'Chile', |
259 | | - 'hk' => 'Hong Kong SAR', |
260 | | - 'cn' => 'People\'s Republic of China', |
261 | | - 'tw' => 'Republic of China (Taiwan)', |
262 | | - 'cx' => 'Christmas Island', |
263 | | - 'cc' => 'Cocos (keeling) Islands', |
264 | | - 'co' => 'Colombia', |
265 | | - 'km' => 'Comoros', |
266 | | - 'cg' => 'Congo', |
267 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
268 | | - 'ck' => 'Cook Islands', |
269 | | - 'cr' => 'Costa Rica', |
270 | | - 'ci' => 'Cote D\'ivoire', |
271 | | - 'hr' => 'Croatia', |
272 | | - 'cu' => 'Cuba', |
273 | | - 'cy' => 'Cyprus', |
274 | | - 'cz' => 'Czech Republic', |
275 | | - 'dk' => 'Denmark', |
276 | | - 'dj' => 'Djibouti', |
277 | | - 'dm' => 'Dominica', |
278 | | - 'do' => 'Dominican Republic', |
279 | | - 'ec' => 'Ecuador', |
280 | | - 'eg' => 'Egypt', |
281 | | - 'sv' => 'El Salvador', |
282 | | - 'gq' => 'Equatorial Guinea', |
283 | | - 'er' => 'Eritrea', |
284 | | - 'ee' => 'Estonia', |
285 | | - 'et' => 'Ethiopia', |
286 | | - 'fk' => 'Falkland Islands (malvinas)', |
287 | | - 'fo' => 'Faroe Islands', |
288 | | - 'fj' => 'Fiji', |
289 | | - 'fi' => 'Finland', |
290 | | - 'fr' => 'France', |
291 | | - 'gf' => 'French Guiana', |
292 | | - 'pf' => 'French Polynesia', |
293 | | - 'tf' => 'French Southern Territories', |
294 | | - 'ga' => 'Gabon', |
295 | | - 'gm' => 'Gambia', |
296 | | - 'ge' => 'Georgia', |
297 | | - 'de' => 'Germany', |
298 | | - 'gh' => 'Ghana', |
299 | | - 'gi' => 'Gibraltar', |
300 | | - 'gr' => 'Greece', |
301 | | - 'gl' => 'Greenland', |
302 | | - 'gd' => 'Grenada', |
303 | | - 'gp' => 'Guadeloupe', |
304 | | - 'gu' => 'Guam', |
305 | | - 'gt' => 'Guatemala', |
306 | | - 'gn' => 'Guinea', |
307 | | - 'gw' => 'Guinea-Bissau', |
308 | | - 'gy' => 'Guyana', |
309 | | - 'ht' => 'Haiti', |
310 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
311 | | - 'va' => 'Holy See (Vatican City)', |
312 | | - 'hn' => 'Honduras', |
313 | | - 'hu' => 'Hungary', |
314 | | - 'is' => 'Iceland', |
315 | | - 'in' => 'India', |
316 | | - 'id' => 'Indonesia', |
317 | | - 'ir' => 'Iran, Islamic Republic of', |
318 | | - 'iq' => 'Iraq', |
319 | | - 'ie' => 'Ireland', |
320 | | - 'il' => 'Israel', |
321 | | - 'it' => 'Italy', |
322 | | - 'jm' => 'Jamaica', |
323 | | - 'jp' => 'Japan', |
324 | | - 'jo' => 'Jordan', |
325 | | - 'kz' => 'Kazakhstan', |
326 | | - 'ke' => 'Kenya', |
327 | | - 'ki' => 'Kiribati', |
328 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
329 | | - 'kr' => 'Republic of Korea', |
330 | | - 'kw' => 'Kuwait', |
331 | | - 'kg' => 'Kyrgyzstan', |
332 | | - 'la' => 'Lao People\'s Democratic Republic', |
333 | | - 'lv' => 'Latvia', |
334 | | - 'lb' => 'Lebanon', |
335 | | - 'ls' => 'Lesotho', |
336 | | - 'lr' => 'Liberia', |
337 | | - 'ly' => 'Libyan Arab Jamahiriya', |
338 | | - 'li' => 'Liechtenstein', |
339 | | - 'lt' => 'Lithuania', |
340 | | - 'lu' => 'Luxembourg', |
341 | | - 'mo' => 'Macao', |
342 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
343 | | - 'mg' => 'Madagascar', |
344 | | - 'mw' => 'Malawi', |
345 | | - 'my' => 'Malaysia', |
346 | | - 'mv' => 'Maldives', |
347 | | - 'ml' => 'Mali', |
348 | | - 'mt' => 'Malta', |
349 | | - 'mh' => 'Marshall Islands', |
350 | | - 'mq' => 'Martinique', |
351 | | - 'mr' => 'Mauritania', |
352 | | - 'mu' => 'Mauritius', |
353 | | - 'yt' => 'Mayotte', |
354 | | - 'mx' => 'Mexico', |
355 | | - 'fm' => 'Micronesia, Federated States of', |
356 | | - 'md' => 'Moldova, Republic of', |
357 | | - 'mc' => 'Monaco SAR', |
358 | | - 'mn' => 'Mongolia', |
| 214 | + 'af' => 'Afghanistan', |
| 215 | + 'ax' => 'Aland Islands', |
| 216 | + 'al' => 'Albania', |
| 217 | + 'dz' => 'Algeria', |
| 218 | + 'as' => 'American Samoa', |
| 219 | + 'ad' => 'Andorra', |
| 220 | + 'ao' => 'Angola', |
| 221 | + 'ai' => 'Anguilla', |
| 222 | + 'aq' => 'Antarctica', |
| 223 | + 'ag' => 'Antigua and Barbuda', |
| 224 | + 'ar' => 'Argentina', |
| 225 | + 'am' => 'Armenia', |
| 226 | + 'aw' => 'Aruba', |
| 227 | + 'au' => 'Australia', |
| 228 | + 'at' => 'Austria', |
| 229 | + 'az' => 'Azerbaijan', |
| 230 | + 'bs' => 'Bahamas', |
| 231 | + 'bh' => 'Bahrain', |
| 232 | + 'bd' => 'Bangladesh', |
| 233 | + 'bb' => 'Barbados', |
| 234 | + 'by' => 'Belarus', |
| 235 | + 'be' => 'Belgium', |
| 236 | + 'bz' => 'Belize', |
| 237 | + 'bj' => 'Benin', |
| 238 | + 'bm' => 'Bermuda', |
| 239 | + 'bt' => 'Bhutan', |
| 240 | + 'bo' => 'Bolivia', |
| 241 | + 'ba' => 'Bosnia and Herzegovina', |
| 242 | + 'bw' => 'Botswana', |
| 243 | + 'bv' => 'Bouvet Island', |
| 244 | + 'br' => 'Brazil', |
| 245 | + 'io' => 'British Indian Ocean Territory', |
| 246 | + 'bn' => 'Brunei Darussalam', |
| 247 | + 'bg' => 'Bulgaria', |
| 248 | + 'bf' => 'Burkina Faso', |
| 249 | + 'mm' => 'Burma (Myanmar)', |
| 250 | + 'bi' => 'Burundi', |
| 251 | + 'kh' => 'Cambodia', |
| 252 | + 'cm' => 'Cameroon', |
| 253 | + 'ca' => 'Canada', |
| 254 | + 'cv' => 'Cape Verde', |
| 255 | + 'ky' => 'Cayman Islands', |
| 256 | + 'cf' => 'Central African Republic', |
| 257 | + 'td' => 'Chad', |
| 258 | + 'cl' => 'Chile', |
| 259 | + 'hk' => 'Hong Kong SAR', |
| 260 | + 'cn' => 'People\'s Republic of China', |
| 261 | + 'tw' => 'Republic of China (Taiwan)', |
| 262 | + 'cx' => 'Christmas Island', |
| 263 | + 'cc' => 'Cocos (keeling) Islands', |
| 264 | + 'co' => 'Colombia', |
| 265 | + 'km' => 'Comoros', |
| 266 | + 'cg' => 'Congo', |
| 267 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 268 | + 'ck' => 'Cook Islands', |
| 269 | + 'cr' => 'Costa Rica', |
| 270 | + 'ci' => 'Cote D\'ivoire', |
| 271 | + 'hr' => 'Croatia', |
| 272 | + 'cu' => 'Cuba', |
| 273 | + 'cy' => 'Cyprus', |
| 274 | + 'cz' => 'Czech Republic', |
| 275 | + 'dk' => 'Denmark', |
| 276 | + 'dj' => 'Djibouti', |
| 277 | + 'dm' => 'Dominica', |
| 278 | + 'do' => 'Dominican Republic', |
| 279 | + 'ec' => 'Ecuador', |
| 280 | + 'eg' => 'Egypt', |
| 281 | + 'sv' => 'El Salvador', |
| 282 | + 'gq' => 'Equatorial Guinea', |
| 283 | + 'er' => 'Eritrea', |
| 284 | + 'ee' => 'Estonia', |
| 285 | + 'et' => 'Ethiopia', |
| 286 | + 'fk' => 'Falkland Islands (malvinas)', |
| 287 | + 'fo' => 'Faroe Islands', |
| 288 | + 'fj' => 'Fiji', |
| 289 | + 'fi' => 'Finland', |
| 290 | + 'fr' => 'France', |
| 291 | + 'gf' => 'French Guiana', |
| 292 | + 'pf' => 'French Polynesia', |
| 293 | + 'tf' => 'French Southern Territories', |
| 294 | + 'ga' => 'Gabon', |
| 295 | + 'gm' => 'Gambia', |
| 296 | + 'ge' => 'Georgia', |
| 297 | + 'de' => 'Germany', |
| 298 | + 'gh' => 'Ghana', |
| 299 | + 'gi' => 'Gibraltar', |
| 300 | + 'gr' => 'Greece', |
| 301 | + 'gl' => 'Greenland', |
| 302 | + 'gd' => 'Grenada', |
| 303 | + 'gp' => 'Guadeloupe', |
| 304 | + 'gu' => 'Guam', |
| 305 | + 'gt' => 'Guatemala', |
| 306 | + 'gn' => 'Guinea', |
| 307 | + 'gw' => 'Guinea-Bissau', |
| 308 | + 'gy' => 'Guyana', |
| 309 | + 'ht' => 'Haiti', |
| 310 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 311 | + 'va' => 'Holy See (Vatican City)', |
| 312 | + 'hn' => 'Honduras', |
| 313 | + 'hu' => 'Hungary', |
| 314 | + 'is' => 'Iceland', |
| 315 | + 'in' => 'India', |
| 316 | + 'id' => 'Indonesia', |
| 317 | + 'ir' => 'Iran, Islamic Republic of', |
| 318 | + 'iq' => 'Iraq', |
| 319 | + 'ie' => 'Ireland', |
| 320 | + 'il' => 'Israel', |
| 321 | + 'it' => 'Italy', |
| 322 | + 'jm' => 'Jamaica', |
| 323 | + 'jp' => 'Japan', |
| 324 | + 'jo' => 'Jordan', |
| 325 | + 'kz' => 'Kazakhstan', |
| 326 | + 'ke' => 'Kenya', |
| 327 | + 'ki' => 'Kiribati', |
| 328 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 329 | + 'kr' => 'Republic of Korea', |
| 330 | + 'kw' => 'Kuwait', |
| 331 | + 'kg' => 'Kyrgyzstan', |
| 332 | + 'la' => 'Lao People\'s Democratic Republic', |
| 333 | + 'lv' => 'Latvia', |
| 334 | + 'lb' => 'Lebanon', |
| 335 | + 'ls' => 'Lesotho', |
| 336 | + 'lr' => 'Liberia', |
| 337 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 338 | + 'li' => 'Liechtenstein', |
| 339 | + 'lt' => 'Lithuania', |
| 340 | + 'lu' => 'Luxembourg', |
| 341 | + 'mo' => 'Macao', |
| 342 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 343 | + 'mg' => 'Madagascar', |
| 344 | + 'mw' => 'Malawi', |
| 345 | + 'my' => 'Malaysia', |
| 346 | + 'mv' => 'Maldives', |
| 347 | + 'ml' => 'Mali', |
| 348 | + 'mt' => 'Malta', |
| 349 | + 'mh' => 'Marshall Islands', |
| 350 | + 'mq' => 'Martinique', |
| 351 | + 'mr' => 'Mauritania', |
| 352 | + 'mu' => 'Mauritius', |
| 353 | + 'yt' => 'Mayotte', |
| 354 | + 'mx' => 'Mexico', |
| 355 | + 'fm' => 'Micronesia, Federated States of', |
| 356 | + 'md' => 'Moldova, Republic of', |
| 357 | + 'mc' => 'Monaco SAR', |
| 358 | + 'mn' => 'Mongolia', |
359 | 359 | 'me' => 'Montenegro', |
360 | | - 'ms' => 'Montserrat', |
361 | | - 'ma' => 'Morocco', |
362 | | - 'mz' => 'Mozambique', |
363 | | - 'na' => 'Namibia', |
364 | | - 'nr' => 'Nauru', |
365 | | - 'np' => 'Nepal', |
366 | | - 'nl' => 'Netherlands', |
367 | | - 'an' => 'Netherlands Antilles', |
368 | | - 'nc' => 'New Caledonia', |
369 | | - 'nz' => 'New Zealand', |
370 | | - 'ni' => 'Nicaragua', |
371 | | - 'ne' => 'Niger', |
372 | | - 'ng' => 'Nigeria', |
373 | | - 'nu' => 'Niue', |
374 | | - 'nf' => 'Norfolk Island', |
375 | | - 'mp' => 'Northern Mariana Islands', |
376 | | - 'no' => 'Norway', |
377 | | - 'om' => 'Oman', |
378 | | - 'pk' => 'Pakistan', |
379 | | - 'pw' => 'Palau', |
380 | | - 'ps' => 'Palestinian Territory', |
381 | | - 'pa' => 'Panama', |
382 | | - 'pg' => 'Papua New Guinea', |
383 | | - 'py' => 'Paraguay', |
384 | | - 'pe' => 'Peru', |
385 | | - 'ph' => 'Philippines', |
386 | | - 'pn' => 'Pitcairn', |
387 | | - 'pl' => 'Poland', |
388 | | - 'pt' => 'Portugal', |
389 | | - 'pr' => 'Puerto Rico', |
390 | | - 'qa' => 'Qatar', |
391 | | - 're' => 'Reunion', |
392 | | - 'ro' => 'Romania', |
393 | | - 'ru' => 'Russian Federation', |
394 | | - 'rw' => 'Rwanda', |
395 | | - 'sh' => 'Saint Helena', |
396 | | - 'kn' => 'Saint Kitts and Nevis', |
397 | | - 'lc' => 'Saint Lucia', |
398 | | - 'pm' => 'Saint Pierre and Miquelon', |
399 | | - 'vc' => 'Saint Vincent and the Grenadines', |
400 | | - 'ws' => 'Samoa', |
401 | | - 'sm' => 'San Marino', |
402 | | - 'st' => 'Sao Tome and Principe', |
403 | | - 'sa' => 'Saudi Arabia', |
404 | | - 'sn' => 'Senegal', |
405 | | - 'rs' => 'Serbia', |
406 | | - 'sc' => 'Seychelles', |
407 | | - 'sl' => 'Sierra Leone', |
408 | | - 'sg' => 'Singapore', |
409 | | - 'sk' => 'Slovakia', |
410 | | - 'si' => 'Slovenia', |
411 | | - 'sb' => 'Solomon Islands', |
412 | | - 'so' => 'Somalia', |
413 | | - 'za' => 'South Africa', |
414 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
415 | | - 'es' => 'Spain', |
416 | | - 'lk' => 'Sri Lanka', |
417 | | - 'sd' => 'Sudan', |
418 | | - 'sr' => 'Suriname', |
419 | | - 'sj' => 'Svalbard and Jan Mayen', |
420 | | - 'sz' => 'Swaziland', |
421 | | - 'se' => 'Sweden', |
422 | | - 'ch' => 'Switzerland', |
423 | | - 'sy' => 'Syrian Arab Republic', |
424 | | - 'tj' => 'Tajikistan', |
425 | | - 'tz' => 'Tanzania, United Republic of', |
426 | | - 'th' => 'Thailand', |
427 | | - 'tl' => 'Timor-leste', |
428 | | - 'tg' => 'Togo', |
429 | | - 'tk' => 'Tokelau', |
430 | | - 'to' => 'Tonga', |
431 | | - 'tt' => 'Trinidad and Tobago', |
432 | | - 'tn' => 'Tunisia', |
433 | | - 'tr' => 'Turkey', |
434 | | - 'tm' => 'Turkmenistan', |
435 | | - 'tc' => 'Turks and Caicos Islands', |
436 | | - 'tv' => 'Tuvalu', |
437 | | - 'ug' => 'Uganda', |
438 | | - 'ua' => 'Ukraine', |
439 | | - 'ae' => 'United Arab Emirates', |
440 | | - 'gb' => 'United Kingdom', |
441 | | - 'us' => 'United States', |
442 | | - 'um' => 'United States Minor Outlying Islands', |
443 | | - 'uy' => 'Uruguay', |
444 | | - 'uz' => 'Uzbekistan', |
445 | | - 'vu' => 'Vanuatu', |
446 | | - 've' => 'Venezuela', |
447 | | - 'vn' => 'Viet Nam', |
448 | | - 'vg' => 'Virgin Islands, British', |
449 | | - 'vi' => 'Virgin Islands, U.S.', |
450 | | - 'wf' => 'Wallis and Futuna', |
451 | | - 'eh' => 'Western Sahara', |
452 | | - 'ye' => 'Yemen', |
453 | | - 'zm' => 'Zambia', |
454 | | - 'zw' => 'Zimbabwe' |
| 360 | + 'ms' => 'Montserrat', |
| 361 | + 'ma' => 'Morocco', |
| 362 | + 'mz' => 'Mozambique', |
| 363 | + 'na' => 'Namibia', |
| 364 | + 'nr' => 'Nauru', |
| 365 | + 'np' => 'Nepal', |
| 366 | + 'nl' => 'Netherlands', |
| 367 | + 'an' => 'Netherlands Antilles', |
| 368 | + 'nc' => 'New Caledonia', |
| 369 | + 'nz' => 'New Zealand', |
| 370 | + 'ni' => 'Nicaragua', |
| 371 | + 'ne' => 'Niger', |
| 372 | + 'ng' => 'Nigeria', |
| 373 | + 'nu' => 'Niue', |
| 374 | + 'nf' => 'Norfolk Island', |
| 375 | + 'mp' => 'Northern Mariana Islands', |
| 376 | + 'no' => 'Norway', |
| 377 | + 'om' => 'Oman', |
| 378 | + 'pk' => 'Pakistan', |
| 379 | + 'pw' => 'Palau', |
| 380 | + 'ps' => 'Palestinian Territory', |
| 381 | + 'pa' => 'Panama', |
| 382 | + 'pg' => 'Papua New Guinea', |
| 383 | + 'py' => 'Paraguay', |
| 384 | + 'pe' => 'Peru', |
| 385 | + 'ph' => 'Philippines', |
| 386 | + 'pn' => 'Pitcairn', |
| 387 | + 'pl' => 'Poland', |
| 388 | + 'pt' => 'Portugal', |
| 389 | + 'pr' => 'Puerto Rico', |
| 390 | + 'qa' => 'Qatar', |
| 391 | + 're' => 'Reunion', |
| 392 | + 'ro' => 'Romania', |
| 393 | + 'ru' => 'Russian Federation', |
| 394 | + 'rw' => 'Rwanda', |
| 395 | + 'sh' => 'Saint Helena', |
| 396 | + 'kn' => 'Saint Kitts and Nevis', |
| 397 | + 'lc' => 'Saint Lucia', |
| 398 | + 'pm' => 'Saint Pierre and Miquelon', |
| 399 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 400 | + 'ws' => 'Samoa', |
| 401 | + 'sm' => 'San Marino', |
| 402 | + 'st' => 'Sao Tome and Principe', |
| 403 | + 'sa' => 'Saudi Arabia', |
| 404 | + 'sn' => 'Senegal', |
| 405 | + 'rs' => 'Serbia', |
| 406 | + 'sc' => 'Seychelles', |
| 407 | + 'sl' => 'Sierra Leone', |
| 408 | + 'sg' => 'Singapore', |
| 409 | + 'sk' => 'Slovakia', |
| 410 | + 'si' => 'Slovenia', |
| 411 | + 'sb' => 'Solomon Islands', |
| 412 | + 'so' => 'Somalia', |
| 413 | + 'za' => 'South Africa', |
| 414 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 415 | + 'es' => 'Spain', |
| 416 | + 'lk' => 'Sri Lanka', |
| 417 | + 'sd' => 'Sudan', |
| 418 | + 'sr' => 'Suriname', |
| 419 | + 'sj' => 'Svalbard and Jan Mayen', |
| 420 | + 'sz' => 'Swaziland', |
| 421 | + 'se' => 'Sweden', |
| 422 | + 'ch' => 'Switzerland', |
| 423 | + 'sy' => 'Syrian Arab Republic', |
| 424 | + 'tj' => 'Tajikistan', |
| 425 | + 'tz' => 'Tanzania, United Republic of', |
| 426 | + 'th' => 'Thailand', |
| 427 | + 'tl' => 'Timor-leste', |
| 428 | + 'tg' => 'Togo', |
| 429 | + 'tk' => 'Tokelau', |
| 430 | + 'to' => 'Tonga', |
| 431 | + 'tt' => 'Trinidad and Tobago', |
| 432 | + 'tn' => 'Tunisia', |
| 433 | + 'tr' => 'Turkey', |
| 434 | + 'tm' => 'Turkmenistan', |
| 435 | + 'tc' => 'Turks and Caicos Islands', |
| 436 | + 'tv' => 'Tuvalu', |
| 437 | + 'ug' => 'Uganda', |
| 438 | + 'ua' => 'Ukraine', |
| 439 | + 'ae' => 'United Arab Emirates', |
| 440 | + 'gb' => 'United Kingdom', |
| 441 | + 'us' => 'United States', |
| 442 | + 'um' => 'United States Minor Outlying Islands', |
| 443 | + 'uy' => 'Uruguay', |
| 444 | + 'uz' => 'Uzbekistan', |
| 445 | + 'vu' => 'Vanuatu', |
| 446 | + 've' => 'Venezuela', |
| 447 | + 'vn' => 'Viet Nam', |
| 448 | + 'vg' => 'Virgin Islands, British', |
| 449 | + 'vi' => 'Virgin Islands, U.S.', |
| 450 | + 'wf' => 'Wallis and Futuna', |
| 451 | + 'eh' => 'Western Sahara', |
| 452 | + 'ye' => 'Yemen', |
| 453 | + 'zm' => 'Zambia', |
| 454 | + 'zw' => 'Zimbabwe' |
455 | 455 | ); |
456 | 456 | |
Index: trunk/wikimania/wmreg/includes/notinuse/language_pt.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => 'Informação pessoal', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>Dados de identificação pessoal</strong></p> |
14 | | - <p>Por favor complete corretamente suas informações pessoais.</p> |
| 13 | +' <p><strong>Dados de identificação pessoal</strong></p> |
| 14 | + <p>Por favor complete corretamente suas informações pessoais.</p> |
15 | 15 | ', |
16 | 16 | 'egy' => 'Você é cidadão da República Árabe do Egito?', |
17 | 17 | 'egy1' => 'Sim. (Por favor escreva seu número de identificação nacional e seu nome nos seguintes campos)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>Habilidades lingüísticas</strong></p>', |
| 37 | +' <p><strong>Habilidades lingüísticas</strong></p>', |
38 | 38 | 'langn' => 'Língua nativa', |
39 | 39 | 'lang' => 'Nível', |
40 | 40 | 'select_lang' => 'Escolhe uma língua', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => 'Nível da língua 3', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>Projeto da Wikimedia e direções de correio eletrônico</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>Teu correio eletrônico só será utilizado para a inscrição e para notificações urgentes sobre a Wikimania 2008.</li> |
60 | | - </ul> |
| 57 | +' <p><strong>Projeto da Wikimedia e direções de correio eletrônico</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>Teu correio eletrônico só será utilizado para a inscrição e para notificações urgentes sobre a Wikimania 2008.</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'Nome da conta de seu projeto da Wikimedia preferido', |
63 | 63 | 'email' => 'Teu correio eletrônico', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => 'Participação', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>Participação, informação para sua credencial e outros dados</strong></p> |
69 | | - <p>Para facilitar arranjos no alojamento, as sessões das diferentes áreas e serviços relacionados, por favor indica-nos tuas opções nos seguintes campos.</p> |
| 68 | +' <p><strong>Participação, informação para sua credencial e outros dados</strong></p> |
| 69 | + <p>Para facilitar arranjos no alojamento, as sessões das diferentes áreas e serviços relacionados, por favor indica-nos tuas opções nos seguintes campos.</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => 'Data de participação', |
72 | 72 | 'join1' => '17 de julho', |
— | — | @@ -99,8 +99,8 @@ |
100 | 100 | 'visa_assistance_description' => 'Por favor indica-nos como pode ajudar-te a equipe de organizadores a obter a visa. (em <strong>Árabe</strong> ou <strong>Inglês</strong>)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>Alojamento</strong></p> |
104 | | - <p>Temos 2 opções disponíveis para o alojamento. Podes eleger entre 1 de 2 hotéis no centro da cidade, em habitação dupla, ou podes ficar-te nos dormitórios do Saint-Marc College. |
| 103 | +' <p><strong>Alojamento</strong></p> |
| 104 | + <p>Temos 2 opções disponíveis para o alojamento. Podes eleger entre 1 de 2 hotéis no centro da cidade, em habitação dupla, ou podes ficar-te nos dormitórios do Saint-Marc College. |
105 | 105 | Por favor confira os detalhes no <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>site oficial de Wikimania</a> para conhecer a localização e especificações exatas de cada opção antes de registrar-se.</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => 'Hotel preferido.', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => 'Qualquer', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>Pagamento</strong></p> |
125 | | - <p>Podes utilizar tua conta Paypal ou pagar utilizando teu cartão de crédito através de PayPal em <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 países / regiões</a> (Não inclui Egito) ou por transferência e pagamento direto à conta bancária do equipe organizador em Alexandria. Nota: a opção de PayPal será descartada se você é egípcio</p> |
| 124 | +' <p><strong>Pagamento</strong></p> |
| 125 | + <p>Podes utilizar tua conta Paypal ou pagar utilizando teu cartão de crédito através de PayPal em <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">103 países / regiões</a> (Não inclui Egito) ou por transferência e pagamento direto à conta bancária do equipe organizador em Alexandria. Nota: a opção de PayPal será descartada se você é egípcio</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => 'Tipo de Pagamento', |
— | — | @@ -210,246 +210,246 @@ |
211 | 211 | |
212 | 212 | |
213 | 213 | $lang_countries = array( |
214 | | - 'af' => 'Afghanistan', |
215 | | - 'ax' => 'Aland Islands', |
216 | | - 'al' => 'Albania', |
217 | | - 'dz' => 'Algeria', |
218 | | - 'as' => 'American Samoa', |
219 | | - 'ad' => 'Andorra', |
220 | | - 'ao' => 'Angola', |
221 | | - 'ai' => 'Anguilla', |
222 | | - 'aq' => 'Antarctica', |
223 | | - 'ag' => 'Antigua and Barbuda', |
224 | | - 'ar' => 'Argentina', |
225 | | - 'am' => 'Armenia', |
226 | | - 'aw' => 'Aruba', |
227 | | - 'au' => 'Australia', |
228 | | - 'at' => 'Austria', |
229 | | - 'az' => 'Azerbaijan', |
230 | | - 'bs' => 'Bahamas', |
231 | | - 'bh' => 'Bahrain', |
232 | | - 'bd' => 'Bangladesh', |
233 | | - 'bb' => 'Barbados', |
234 | | - 'by' => 'Belarus', |
235 | | - 'be' => 'Belgium', |
236 | | - 'bz' => 'Belize', |
237 | | - 'bj' => 'Benin', |
238 | | - 'bm' => 'Bermuda', |
239 | | - 'bt' => 'Bhutan', |
240 | | - 'bo' => 'Bolivia', |
241 | | - 'ba' => 'Bosnia and Herzegovina', |
242 | | - 'bw' => 'Botswana', |
243 | | - 'bv' => 'Bouvet Island', |
244 | | - 'br' => 'Brazil', |
245 | | - 'io' => 'British Indian Ocean Territory', |
246 | | - 'bn' => 'Brunei Darussalam', |
247 | | - 'bg' => 'Bulgaria', |
248 | | - 'bf' => 'Burkina Faso', |
249 | | - 'mm' => 'Burma (Myanmar)', |
250 | | - 'bi' => 'Burundi', |
251 | | - 'kh' => 'Cambodia', |
252 | | - 'cm' => 'Cameroon', |
253 | | - 'ca' => 'Canada', |
254 | | - 'cv' => 'Cape Verde', |
255 | | - 'ky' => 'Cayman Islands', |
256 | | - 'cf' => 'Central African Republic', |
257 | | - 'td' => 'Chad', |
258 | | - 'cl' => 'Chile', |
259 | | - 'hk' => 'Hong Kong SAR', |
260 | | - 'cn' => 'People\'s Republic of China', |
261 | | - 'tw' => 'Republic of China (Taiwan)', |
262 | | - 'cx' => 'Christmas Island', |
263 | | - 'cc' => 'Cocos (keeling) Islands', |
264 | | - 'co' => 'Colombia', |
265 | | - 'km' => 'Comoros', |
266 | | - 'cg' => 'Congo', |
267 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
268 | | - 'ck' => 'Cook Islands', |
269 | | - 'cr' => 'Costa Rica', |
270 | | - 'ci' => 'Cote D\'ivoire', |
271 | | - 'hr' => 'Croatia', |
272 | | - 'cu' => 'Cuba', |
273 | | - 'cy' => 'Cyprus', |
274 | | - 'cz' => 'Czech Republic', |
275 | | - 'dk' => 'Denmark', |
276 | | - 'dj' => 'Djibouti', |
277 | | - 'dm' => 'Dominica', |
278 | | - 'do' => 'Dominican Republic', |
279 | | - 'ec' => 'Ecuador', |
280 | | - 'eg' => 'Egypt', |
281 | | - 'sv' => 'El Salvador', |
282 | | - 'gq' => 'Equatorial Guinea', |
283 | | - 'er' => 'Eritrea', |
284 | | - 'ee' => 'Estonia', |
285 | | - 'et' => 'Ethiopia', |
286 | | - 'fk' => 'Falkland Islands (malvinas)', |
287 | | - 'fo' => 'Faroe Islands', |
288 | | - 'fj' => 'Fiji', |
289 | | - 'fi' => 'Finland', |
290 | | - 'fr' => 'France', |
291 | | - 'gf' => 'French Guiana', |
292 | | - 'pf' => 'French Polynesia', |
293 | | - 'tf' => 'French Southern Territories', |
294 | | - 'ga' => 'Gabon', |
295 | | - 'gm' => 'Gambia', |
296 | | - 'ge' => 'Georgia', |
297 | | - 'de' => 'Germany', |
298 | | - 'gh' => 'Ghana', |
299 | | - 'gi' => 'Gibraltar', |
300 | | - 'gr' => 'Greece', |
301 | | - 'gl' => 'Greenland', |
302 | | - 'gd' => 'Grenada', |
303 | | - 'gp' => 'Guadeloupe', |
304 | | - 'gu' => 'Guam', |
305 | | - 'gt' => 'Guatemala', |
306 | | - 'gn' => 'Guinea', |
307 | | - 'gw' => 'Guinea-Bissau', |
308 | | - 'gy' => 'Guyana', |
309 | | - 'ht' => 'Haiti', |
310 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
311 | | - 'va' => 'Holy See (Vatican City)', |
312 | | - 'hn' => 'Honduras', |
313 | | - 'hu' => 'Hungary', |
314 | | - 'is' => 'Iceland', |
315 | | - 'in' => 'India', |
316 | | - 'id' => 'Indonesia', |
317 | | - 'ir' => 'Iran, Islamic Republic of', |
318 | | - 'iq' => 'Iraq', |
319 | | - 'ie' => 'Ireland', |
320 | | - 'il' => 'Israel', |
321 | | - 'it' => 'Italy', |
322 | | - 'jm' => 'Jamaica', |
323 | | - 'jp' => 'Japan', |
324 | | - 'jo' => 'Jordan', |
325 | | - 'kz' => 'Kazakhstan', |
326 | | - 'ke' => 'Kenya', |
327 | | - 'ki' => 'Kiribati', |
328 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
329 | | - 'kr' => 'Republic of Korea', |
330 | | - 'kw' => 'Kuwait', |
331 | | - 'kg' => 'Kyrgyzstan', |
332 | | - 'la' => 'Lao People\'s Democratic Republic', |
333 | | - 'lv' => 'Latvia', |
334 | | - 'lb' => 'Lebanon', |
335 | | - 'ls' => 'Lesotho', |
336 | | - 'lr' => 'Liberia', |
337 | | - 'ly' => 'Libyan Arab Jamahiriya', |
338 | | - 'li' => 'Liechtenstein', |
339 | | - 'lt' => 'Lithuania', |
340 | | - 'lu' => 'Luxembourg', |
341 | | - 'mo' => 'Macao', |
342 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
343 | | - 'mg' => 'Madagascar', |
344 | | - 'mw' => 'Malawi', |
345 | | - 'my' => 'Malaysia', |
346 | | - 'mv' => 'Maldives', |
347 | | - 'ml' => 'Mali', |
348 | | - 'mt' => 'Malta', |
349 | | - 'mh' => 'Marshall Islands', |
350 | | - 'mq' => 'Martinique', |
351 | | - 'mr' => 'Mauritania', |
352 | | - 'mu' => 'Mauritius', |
353 | | - 'yt' => 'Mayotte', |
354 | | - 'mx' => 'Mexico', |
355 | | - 'fm' => 'Micronesia, Federated States of', |
356 | | - 'md' => 'Moldova, Republic of', |
357 | | - 'mc' => 'Monaco SAR', |
358 | | - 'mn' => 'Mongolia', |
| 214 | + 'af' => 'Afghanistan', |
| 215 | + 'ax' => 'Aland Islands', |
| 216 | + 'al' => 'Albania', |
| 217 | + 'dz' => 'Algeria', |
| 218 | + 'as' => 'American Samoa', |
| 219 | + 'ad' => 'Andorra', |
| 220 | + 'ao' => 'Angola', |
| 221 | + 'ai' => 'Anguilla', |
| 222 | + 'aq' => 'Antarctica', |
| 223 | + 'ag' => 'Antigua and Barbuda', |
| 224 | + 'ar' => 'Argentina', |
| 225 | + 'am' => 'Armenia', |
| 226 | + 'aw' => 'Aruba', |
| 227 | + 'au' => 'Australia', |
| 228 | + 'at' => 'Austria', |
| 229 | + 'az' => 'Azerbaijan', |
| 230 | + 'bs' => 'Bahamas', |
| 231 | + 'bh' => 'Bahrain', |
| 232 | + 'bd' => 'Bangladesh', |
| 233 | + 'bb' => 'Barbados', |
| 234 | + 'by' => 'Belarus', |
| 235 | + 'be' => 'Belgium', |
| 236 | + 'bz' => 'Belize', |
| 237 | + 'bj' => 'Benin', |
| 238 | + 'bm' => 'Bermuda', |
| 239 | + 'bt' => 'Bhutan', |
| 240 | + 'bo' => 'Bolivia', |
| 241 | + 'ba' => 'Bosnia and Herzegovina', |
| 242 | + 'bw' => 'Botswana', |
| 243 | + 'bv' => 'Bouvet Island', |
| 244 | + 'br' => 'Brazil', |
| 245 | + 'io' => 'British Indian Ocean Territory', |
| 246 | + 'bn' => 'Brunei Darussalam', |
| 247 | + 'bg' => 'Bulgaria', |
| 248 | + 'bf' => 'Burkina Faso', |
| 249 | + 'mm' => 'Burma (Myanmar)', |
| 250 | + 'bi' => 'Burundi', |
| 251 | + 'kh' => 'Cambodia', |
| 252 | + 'cm' => 'Cameroon', |
| 253 | + 'ca' => 'Canada', |
| 254 | + 'cv' => 'Cape Verde', |
| 255 | + 'ky' => 'Cayman Islands', |
| 256 | + 'cf' => 'Central African Republic', |
| 257 | + 'td' => 'Chad', |
| 258 | + 'cl' => 'Chile', |
| 259 | + 'hk' => 'Hong Kong SAR', |
| 260 | + 'cn' => 'People\'s Republic of China', |
| 261 | + 'tw' => 'Republic of China (Taiwan)', |
| 262 | + 'cx' => 'Christmas Island', |
| 263 | + 'cc' => 'Cocos (keeling) Islands', |
| 264 | + 'co' => 'Colombia', |
| 265 | + 'km' => 'Comoros', |
| 266 | + 'cg' => 'Congo', |
| 267 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 268 | + 'ck' => 'Cook Islands', |
| 269 | + 'cr' => 'Costa Rica', |
| 270 | + 'ci' => 'Cote D\'ivoire', |
| 271 | + 'hr' => 'Croatia', |
| 272 | + 'cu' => 'Cuba', |
| 273 | + 'cy' => 'Cyprus', |
| 274 | + 'cz' => 'Czech Republic', |
| 275 | + 'dk' => 'Denmark', |
| 276 | + 'dj' => 'Djibouti', |
| 277 | + 'dm' => 'Dominica', |
| 278 | + 'do' => 'Dominican Republic', |
| 279 | + 'ec' => 'Ecuador', |
| 280 | + 'eg' => 'Egypt', |
| 281 | + 'sv' => 'El Salvador', |
| 282 | + 'gq' => 'Equatorial Guinea', |
| 283 | + 'er' => 'Eritrea', |
| 284 | + 'ee' => 'Estonia', |
| 285 | + 'et' => 'Ethiopia', |
| 286 | + 'fk' => 'Falkland Islands (malvinas)', |
| 287 | + 'fo' => 'Faroe Islands', |
| 288 | + 'fj' => 'Fiji', |
| 289 | + 'fi' => 'Finland', |
| 290 | + 'fr' => 'France', |
| 291 | + 'gf' => 'French Guiana', |
| 292 | + 'pf' => 'French Polynesia', |
| 293 | + 'tf' => 'French Southern Territories', |
| 294 | + 'ga' => 'Gabon', |
| 295 | + 'gm' => 'Gambia', |
| 296 | + 'ge' => 'Georgia', |
| 297 | + 'de' => 'Germany', |
| 298 | + 'gh' => 'Ghana', |
| 299 | + 'gi' => 'Gibraltar', |
| 300 | + 'gr' => 'Greece', |
| 301 | + 'gl' => 'Greenland', |
| 302 | + 'gd' => 'Grenada', |
| 303 | + 'gp' => 'Guadeloupe', |
| 304 | + 'gu' => 'Guam', |
| 305 | + 'gt' => 'Guatemala', |
| 306 | + 'gn' => 'Guinea', |
| 307 | + 'gw' => 'Guinea-Bissau', |
| 308 | + 'gy' => 'Guyana', |
| 309 | + 'ht' => 'Haiti', |
| 310 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 311 | + 'va' => 'Holy See (Vatican City)', |
| 312 | + 'hn' => 'Honduras', |
| 313 | + 'hu' => 'Hungary', |
| 314 | + 'is' => 'Iceland', |
| 315 | + 'in' => 'India', |
| 316 | + 'id' => 'Indonesia', |
| 317 | + 'ir' => 'Iran, Islamic Republic of', |
| 318 | + 'iq' => 'Iraq', |
| 319 | + 'ie' => 'Ireland', |
| 320 | + 'il' => 'Israel', |
| 321 | + 'it' => 'Italy', |
| 322 | + 'jm' => 'Jamaica', |
| 323 | + 'jp' => 'Japan', |
| 324 | + 'jo' => 'Jordan', |
| 325 | + 'kz' => 'Kazakhstan', |
| 326 | + 'ke' => 'Kenya', |
| 327 | + 'ki' => 'Kiribati', |
| 328 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 329 | + 'kr' => 'Republic of Korea', |
| 330 | + 'kw' => 'Kuwait', |
| 331 | + 'kg' => 'Kyrgyzstan', |
| 332 | + 'la' => 'Lao People\'s Democratic Republic', |
| 333 | + 'lv' => 'Latvia', |
| 334 | + 'lb' => 'Lebanon', |
| 335 | + 'ls' => 'Lesotho', |
| 336 | + 'lr' => 'Liberia', |
| 337 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 338 | + 'li' => 'Liechtenstein', |
| 339 | + 'lt' => 'Lithuania', |
| 340 | + 'lu' => 'Luxembourg', |
| 341 | + 'mo' => 'Macao', |
| 342 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 343 | + 'mg' => 'Madagascar', |
| 344 | + 'mw' => 'Malawi', |
| 345 | + 'my' => 'Malaysia', |
| 346 | + 'mv' => 'Maldives', |
| 347 | + 'ml' => 'Mali', |
| 348 | + 'mt' => 'Malta', |
| 349 | + 'mh' => 'Marshall Islands', |
| 350 | + 'mq' => 'Martinique', |
| 351 | + 'mr' => 'Mauritania', |
| 352 | + 'mu' => 'Mauritius', |
| 353 | + 'yt' => 'Mayotte', |
| 354 | + 'mx' => 'Mexico', |
| 355 | + 'fm' => 'Micronesia, Federated States of', |
| 356 | + 'md' => 'Moldova, Republic of', |
| 357 | + 'mc' => 'Monaco SAR', |
| 358 | + 'mn' => 'Mongolia', |
359 | 359 | 'me' => 'Montenegro', |
360 | | - 'ms' => 'Montserrat', |
361 | | - 'ma' => 'Morocco', |
362 | | - 'mz' => 'Mozambique', |
363 | | - 'na' => 'Namibia', |
364 | | - 'nr' => 'Nauru', |
365 | | - 'np' => 'Nepal', |
366 | | - 'nl' => 'Netherlands', |
367 | | - 'an' => 'Netherlands Antilles', |
368 | | - 'nc' => 'New Caledonia', |
369 | | - 'nz' => 'New Zealand', |
370 | | - 'ni' => 'Nicaragua', |
371 | | - 'ne' => 'Niger', |
372 | | - 'ng' => 'Nigeria', |
373 | | - 'nu' => 'Niue', |
374 | | - 'nf' => 'Norfolk Island', |
375 | | - 'mp' => 'Northern Mariana Islands', |
376 | | - 'no' => 'Norway', |
377 | | - 'om' => 'Oman', |
378 | | - 'pk' => 'Pakistan', |
379 | | - 'pw' => 'Palau', |
380 | | - 'ps' => 'Palestinian Territory', |
381 | | - 'pa' => 'Panama', |
382 | | - 'pg' => 'Papua New Guinea', |
383 | | - 'py' => 'Paraguay', |
384 | | - 'pe' => 'Peru', |
385 | | - 'ph' => 'Philippines', |
386 | | - 'pn' => 'Pitcairn', |
387 | | - 'pl' => 'Poland', |
388 | | - 'pt' => 'Portugal', |
389 | | - 'pr' => 'Puerto Rico', |
390 | | - 'qa' => 'Qatar', |
391 | | - 're' => 'Reunion', |
392 | | - 'ro' => 'Romania', |
393 | | - 'ru' => 'Russian Federation', |
394 | | - 'rw' => 'Rwanda', |
395 | | - 'sh' => 'Saint Helena', |
396 | | - 'kn' => 'Saint Kitts and Nevis', |
397 | | - 'lc' => 'Saint Lucia', |
398 | | - 'pm' => 'Saint Pierre and Miquelon', |
399 | | - 'vc' => 'Saint Vincent and the Grenadines', |
400 | | - 'ws' => 'Samoa', |
401 | | - 'sm' => 'San Marino', |
402 | | - 'st' => 'Sao Tome and Principe', |
403 | | - 'sa' => 'Saudi Arabia', |
404 | | - 'sn' => 'Senegal', |
405 | | - 'rs' => 'Serbia', |
406 | | - 'sc' => 'Seychelles', |
407 | | - 'sl' => 'Sierra Leone', |
408 | | - 'sg' => 'Singapore', |
409 | | - 'sk' => 'Slovakia', |
410 | | - 'si' => 'Slovenia', |
411 | | - 'sb' => 'Solomon Islands', |
412 | | - 'so' => 'Somalia', |
413 | | - 'za' => 'South Africa', |
414 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
415 | | - 'es' => 'Spain', |
416 | | - 'lk' => 'Sri Lanka', |
417 | | - 'sd' => 'Sudan', |
418 | | - 'sr' => 'Suriname', |
419 | | - 'sj' => 'Svalbard and Jan Mayen', |
420 | | - 'sz' => 'Swaziland', |
421 | | - 'se' => 'Sweden', |
422 | | - 'ch' => 'Switzerland', |
423 | | - 'sy' => 'Syrian Arab Republic', |
424 | | - 'tj' => 'Tajikistan', |
425 | | - 'tz' => 'Tanzania, United Republic of', |
426 | | - 'th' => 'Thailand', |
427 | | - 'tl' => 'Timor-leste', |
428 | | - 'tg' => 'Togo', |
429 | | - 'tk' => 'Tokelau', |
430 | | - 'to' => 'Tonga', |
431 | | - 'tt' => 'Trinidad and Tobago', |
432 | | - 'tn' => 'Tunisia', |
433 | | - 'tr' => 'Turkey', |
434 | | - 'tm' => 'Turkmenistan', |
435 | | - 'tc' => 'Turks and Caicos Islands', |
436 | | - 'tv' => 'Tuvalu', |
437 | | - 'ug' => 'Uganda', |
438 | | - 'ua' => 'Ukraine', |
439 | | - 'ae' => 'United Arab Emirates', |
440 | | - 'gb' => 'United Kingdom', |
441 | | - 'us' => 'United States', |
442 | | - 'um' => 'United States Minor Outlying Islands', |
443 | | - 'uy' => 'Uruguay', |
444 | | - 'uz' => 'Uzbekistan', |
445 | | - 'vu' => 'Vanuatu', |
446 | | - 've' => 'Venezuela', |
447 | | - 'vn' => 'Viet Nam', |
448 | | - 'vg' => 'Virgin Islands, British', |
449 | | - 'vi' => 'Virgin Islands, U.S.', |
450 | | - 'wf' => 'Wallis and Futuna', |
451 | | - 'eh' => 'Western Sahara', |
452 | | - 'ye' => 'Yemen', |
453 | | - 'zm' => 'Zambia', |
454 | | - 'zw' => 'Zimbabwe' |
| 360 | + 'ms' => 'Montserrat', |
| 361 | + 'ma' => 'Morocco', |
| 362 | + 'mz' => 'Mozambique', |
| 363 | + 'na' => 'Namibia', |
| 364 | + 'nr' => 'Nauru', |
| 365 | + 'np' => 'Nepal', |
| 366 | + 'nl' => 'Netherlands', |
| 367 | + 'an' => 'Netherlands Antilles', |
| 368 | + 'nc' => 'New Caledonia', |
| 369 | + 'nz' => 'New Zealand', |
| 370 | + 'ni' => 'Nicaragua', |
| 371 | + 'ne' => 'Niger', |
| 372 | + 'ng' => 'Nigeria', |
| 373 | + 'nu' => 'Niue', |
| 374 | + 'nf' => 'Norfolk Island', |
| 375 | + 'mp' => 'Northern Mariana Islands', |
| 376 | + 'no' => 'Norway', |
| 377 | + 'om' => 'Oman', |
| 378 | + 'pk' => 'Pakistan', |
| 379 | + 'pw' => 'Palau', |
| 380 | + 'ps' => 'Palestinian Territory', |
| 381 | + 'pa' => 'Panama', |
| 382 | + 'pg' => 'Papua New Guinea', |
| 383 | + 'py' => 'Paraguay', |
| 384 | + 'pe' => 'Peru', |
| 385 | + 'ph' => 'Philippines', |
| 386 | + 'pn' => 'Pitcairn', |
| 387 | + 'pl' => 'Poland', |
| 388 | + 'pt' => 'Portugal', |
| 389 | + 'pr' => 'Puerto Rico', |
| 390 | + 'qa' => 'Qatar', |
| 391 | + 're' => 'Reunion', |
| 392 | + 'ro' => 'Romania', |
| 393 | + 'ru' => 'Russian Federation', |
| 394 | + 'rw' => 'Rwanda', |
| 395 | + 'sh' => 'Saint Helena', |
| 396 | + 'kn' => 'Saint Kitts and Nevis', |
| 397 | + 'lc' => 'Saint Lucia', |
| 398 | + 'pm' => 'Saint Pierre and Miquelon', |
| 399 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 400 | + 'ws' => 'Samoa', |
| 401 | + 'sm' => 'San Marino', |
| 402 | + 'st' => 'Sao Tome and Principe', |
| 403 | + 'sa' => 'Saudi Arabia', |
| 404 | + 'sn' => 'Senegal', |
| 405 | + 'rs' => 'Serbia', |
| 406 | + 'sc' => 'Seychelles', |
| 407 | + 'sl' => 'Sierra Leone', |
| 408 | + 'sg' => 'Singapore', |
| 409 | + 'sk' => 'Slovakia', |
| 410 | + 'si' => 'Slovenia', |
| 411 | + 'sb' => 'Solomon Islands', |
| 412 | + 'so' => 'Somalia', |
| 413 | + 'za' => 'South Africa', |
| 414 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 415 | + 'es' => 'Spain', |
| 416 | + 'lk' => 'Sri Lanka', |
| 417 | + 'sd' => 'Sudan', |
| 418 | + 'sr' => 'Suriname', |
| 419 | + 'sj' => 'Svalbard and Jan Mayen', |
| 420 | + 'sz' => 'Swaziland', |
| 421 | + 'se' => 'Sweden', |
| 422 | + 'ch' => 'Switzerland', |
| 423 | + 'sy' => 'Syrian Arab Republic', |
| 424 | + 'tj' => 'Tajikistan', |
| 425 | + 'tz' => 'Tanzania, United Republic of', |
| 426 | + 'th' => 'Thailand', |
| 427 | + 'tl' => 'Timor-leste', |
| 428 | + 'tg' => 'Togo', |
| 429 | + 'tk' => 'Tokelau', |
| 430 | + 'to' => 'Tonga', |
| 431 | + 'tt' => 'Trinidad and Tobago', |
| 432 | + 'tn' => 'Tunisia', |
| 433 | + 'tr' => 'Turkey', |
| 434 | + 'tm' => 'Turkmenistan', |
| 435 | + 'tc' => 'Turks and Caicos Islands', |
| 436 | + 'tv' => 'Tuvalu', |
| 437 | + 'ug' => 'Uganda', |
| 438 | + 'ua' => 'Ukraine', |
| 439 | + 'ae' => 'United Arab Emirates', |
| 440 | + 'gb' => 'United Kingdom', |
| 441 | + 'us' => 'United States', |
| 442 | + 'um' => 'United States Minor Outlying Islands', |
| 443 | + 'uy' => 'Uruguay', |
| 444 | + 'uz' => 'Uzbekistan', |
| 445 | + 'vu' => 'Vanuatu', |
| 446 | + 've' => 'Venezuela', |
| 447 | + 'vn' => 'Viet Nam', |
| 448 | + 'vg' => 'Virgin Islands, British', |
| 449 | + 'vi' => 'Virgin Islands, U.S.', |
| 450 | + 'wf' => 'Wallis and Futuna', |
| 451 | + 'eh' => 'Western Sahara', |
| 452 | + 'ye' => 'Yemen', |
| 453 | + 'zm' => 'Zambia', |
| 454 | + 'zw' => 'Zimbabwe' |
455 | 455 | ); |
456 | 456 | |
Index: trunk/wikimania/wmreg/includes/notinuse/language_cs.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | |
11 | 11 | 'legend1' => 'Osobní ínformace', |
12 | 12 | 'title1' => |
13 | | -' <p><strong>Osobní identifikační údaje</strong></p> |
14 | | - <p>Prosíme vyplnit údaje ve formuláři pravdivě.</p> |
| 13 | +' <p><strong>Osobní identifikační údaje</strong></p> |
| 14 | + <p>Prosíme vyplnit údaje ve formuláři pravdivě.</p> |
15 | 15 | ', |
16 | 16 | 'egy' => 'Jste občanem Egyptské arabské republiky?', |
17 | 17 | 'egy1' => 'Ano, jsem. (Do následujících polí uveďte své národní identifikační číslo a jméno)', |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'day' => '', |
35 | 35 | |
36 | 36 | 'title2' => |
37 | | -' <p><strong>Jazykové schopnosti</strong></p>', |
| 37 | +' <p><strong>Jazykové schopnosti</strong></p>', |
38 | 38 | 'langn' => 'Mateřský jazyk', |
39 | 39 | 'lang' => 'Úroveň znalosti', |
40 | 40 | 'select_lang' => 'Vyberte jazyk', |
— | — | @@ -53,10 +53,10 @@ |
54 | 54 | 'lang3_level' => 'Úroveň znalosti jazyka 3', |
55 | 55 | |
56 | 56 | 'title3' => |
57 | | -' <p><strong>Projekt Wikimedia a e-mail účtu</strong></p> |
58 | | - <ul class="form_notice"> |
59 | | - <li>Informace o elektronické adrese budou použity pouze pro účely registrace a v případě neodkladných oznámení o Wikimanii 2008.</li> |
60 | | - </ul> |
| 57 | +' <p><strong>Projekt Wikimedia a e-mail účtu</strong></p> |
| 58 | + <ul class="form_notice"> |
| 59 | + <li>Informace o elektronické adrese budou použity pouze pro účely registrace a v případě neodkladných oznámení o Wikimanii 2008.</li> |
| 60 | + </ul> |
61 | 61 | ', |
62 | 62 | 'wiki_id' => 'Přihlašovací jméno zvoleného účtu na projektu Wikimedia', |
63 | 63 | 'email' => 'Váš e-mail', |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | |
66 | 66 | 'legend2' => 'Účast', |
67 | 67 | 'title4' => |
68 | | -' <p><strong>Informace o účasti, identifikační visačka a ostatní</strong></p> |
69 | | - <p>Pro zajištění ubytování, vstupu na akce a služeb, prosíme o vyznačení preferencí v následujících polích.</p> |
| 68 | +' <p><strong>Informace o účasti, identifikační visačka a ostatní</strong></p> |
| 69 | + <p>Pro zajištění ubytování, vstupu na akce a služeb, prosíme o vyznačení preferencí v následujících polích.</p> |
70 | 70 | ', |
71 | 71 | 'join_date' => 'Datum účasti', |
72 | 72 | 'join1' => '17. červenec', |
— | — | @@ -99,9 +99,9 @@ |
100 | 100 | 'visa_assistance_description' => 'Uveďte, jak Vám může organizační tým pomoci se získáním víza. (v <strong>arabštině</strong> nebo <strong>angličtině</strong>)', |
101 | 101 | |
102 | 102 | 'title5' => |
103 | | -' <p><strong>Ubytování</strong></p> |
104 | | - <p>Nabízíme 2 možnosti ubytování. Je možno bydlet v dvojlůžkovém pokoji v jednom ze dvou hotelů v centru města, nebo na kolejích Saint-Marc College. |
105 | | - Před vyplněním formuláře si prostudujte detaily jednotlivých variant na <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>oficiální stránce Wikimanie</a>.</p> |
| 103 | +' <p><strong>Ubytování</strong></p> |
| 104 | + <p>Nabízíme 2 možnosti ubytování. Je možno bydlet v dvojlůžkovém pokoji v jednom ze dvou hotelů v centru města, nebo na kolejích Saint-Marc College. |
| 105 | + Před vyplněním formuláře si prostudujte detaily jednotlivých variant na <a href=http://wikimania2008.wikimedia.org/wiki/Accommodation>oficiální stránce Wikimanie</a>.</p> |
106 | 106 | ', |
107 | 107 | 'accommodation_hotel' => 'Preferovaný hotel', |
108 | 108 | 'hotels_metropol' => 'Hotel Metropol ($60 za noc)', |
— | — | @@ -120,8 +120,8 @@ |
121 | 121 | 'room6' => 'Libovolný', |
122 | 122 | |
123 | 123 | 'title6' => |
124 | | -' <p><strong>Platba</strong></p> |
125 | | - <p>Můžete využít svůj PayPal účet nebo kreditní kartu prostřednictvím PayPal účtu <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">ve 103 státech / regionech</a> (Egypt není obsažen) nebo bankovním převodem na účet organizačního týmu v Alexandrii. Pozor: Platbu prostřednictvím Paypal účtu nemohou využít egyptští občané.</p> |
| 124 | +' <p><strong>Platba</strong></p> |
| 125 | + <p>Můžete využít svůj PayPal účet nebo kreditní kartu prostřednictvím PayPal účtu <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-approved-signup-countries-outside" title="PayPal Worldwide">ve 103 státech / regionech</a> (Egypt není obsažen) nebo bankovním převodem na účet organizačního týmu v Alexandrii. Pozor: Platbu prostřednictvím Paypal účtu nemohou využít egyptští občané.</p> |
126 | 126 | ', |
127 | 127 | |
128 | 128 | 'pay_method' => 'Způsob platby', |
— | — | @@ -209,246 +209,246 @@ |
210 | 210 | ); |
211 | 211 | |
212 | 212 | $lang_countries = array( |
213 | | - 'af' => 'Afghanistan', |
214 | | - 'ax' => 'Aland Islands', |
215 | | - 'al' => 'Albania', |
216 | | - 'dz' => 'Algeria', |
217 | | - 'as' => 'American Samoa', |
218 | | - 'ad' => 'Andorra', |
219 | | - 'ao' => 'Angola', |
220 | | - 'ai' => 'Anguilla', |
221 | | - 'aq' => 'Antarctica', |
222 | | - 'ag' => 'Antigua and Barbuda', |
223 | | - 'ar' => 'Argentina', |
224 | | - 'am' => 'Armenia', |
225 | | - 'aw' => 'Aruba', |
226 | | - 'au' => 'Australia', |
227 | | - 'at' => 'Austria', |
228 | | - 'az' => 'Azerbaijan', |
229 | | - 'bs' => 'Bahamas', |
230 | | - 'bh' => 'Bahrain', |
231 | | - 'bd' => 'Bangladesh', |
232 | | - 'bb' => 'Barbados', |
233 | | - 'by' => 'Belarus', |
234 | | - 'be' => 'Belgium', |
235 | | - 'bz' => 'Belize', |
236 | | - 'bj' => 'Benin', |
237 | | - 'bm' => 'Bermuda', |
238 | | - 'bt' => 'Bhutan', |
239 | | - 'bo' => 'Bolivia', |
240 | | - 'ba' => 'Bosnia and Herzegovina', |
241 | | - 'bw' => 'Botswana', |
242 | | - 'bv' => 'Bouvet Island', |
243 | | - 'br' => 'Brazil', |
244 | | - 'io' => 'British Indian Ocean Territory', |
245 | | - 'bn' => 'Brunei Darussalam', |
246 | | - 'bg' => 'Bulgaria', |
247 | | - 'bf' => 'Burkina Faso', |
248 | | - 'mm' => 'Burma (Myanmar)', |
249 | | - 'bi' => 'Burundi', |
250 | | - 'kh' => 'Cambodia', |
251 | | - 'cm' => 'Cameroon', |
252 | | - 'ca' => 'Canada', |
253 | | - 'cv' => 'Cape Verde', |
254 | | - 'ky' => 'Cayman Islands', |
255 | | - 'cf' => 'Central African Republic', |
256 | | - 'td' => 'Chad', |
257 | | - 'cl' => 'Chile', |
258 | | - 'hk' => 'Hong Kong SAR', |
259 | | - 'cn' => 'People\'s Republic of China', |
260 | | - 'tw' => 'Republic of China (Taiwan)', |
261 | | - 'cx' => 'Christmas Island', |
262 | | - 'cc' => 'Cocos (keeling) Islands', |
263 | | - 'co' => 'Colombia', |
264 | | - 'km' => 'Comoros', |
265 | | - 'cg' => 'Congo', |
266 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
267 | | - 'ck' => 'Cook Islands', |
268 | | - 'cr' => 'Costa Rica', |
269 | | - 'ci' => 'Cote D\'ivoire', |
270 | | - 'hr' => 'Croatia', |
271 | | - 'cu' => 'Cuba', |
272 | | - 'cy' => 'Cyprus', |
273 | | - 'cz' => 'Czech Republic', |
274 | | - 'dk' => 'Denmark', |
275 | | - 'dj' => 'Djibouti', |
276 | | - 'dm' => 'Dominica', |
277 | | - 'do' => 'Dominican Republic', |
278 | | - 'ec' => 'Ecuador', |
279 | | - 'eg' => 'Egypt', |
280 | | - 'sv' => 'El Salvador', |
281 | | - 'gq' => 'Equatorial Guinea', |
282 | | - 'er' => 'Eritrea', |
283 | | - 'ee' => 'Estonia', |
284 | | - 'et' => 'Ethiopia', |
285 | | - 'fk' => 'Falkland Islands (malvinas)', |
286 | | - 'fo' => 'Faroe Islands', |
287 | | - 'fj' => 'Fiji', |
288 | | - 'fi' => 'Finland', |
289 | | - 'fr' => 'France', |
290 | | - 'gf' => 'French Guiana', |
291 | | - 'pf' => 'French Polynesia', |
292 | | - 'tf' => 'French Southern Territories', |
293 | | - 'ga' => 'Gabon', |
294 | | - 'gm' => 'Gambia', |
295 | | - 'ge' => 'Georgia', |
296 | | - 'de' => 'Germany', |
297 | | - 'gh' => 'Ghana', |
298 | | - 'gi' => 'Gibraltar', |
299 | | - 'gr' => 'Greece', |
300 | | - 'gl' => 'Greenland', |
301 | | - 'gd' => 'Grenada', |
302 | | - 'gp' => 'Guadeloupe', |
303 | | - 'gu' => 'Guam', |
304 | | - 'gt' => 'Guatemala', |
305 | | - 'gn' => 'Guinea', |
306 | | - 'gw' => 'Guinea-Bissau', |
307 | | - 'gy' => 'Guyana', |
308 | | - 'ht' => 'Haiti', |
309 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
310 | | - 'va' => 'Holy See (Vatican City)', |
311 | | - 'hn' => 'Honduras', |
312 | | - 'hu' => 'Hungary', |
313 | | - 'is' => 'Iceland', |
314 | | - 'in' => 'India', |
315 | | - 'id' => 'Indonesia', |
316 | | - 'ir' => 'Iran, Islamic Republic of', |
317 | | - 'iq' => 'Iraq', |
318 | | - 'ie' => 'Ireland', |
319 | | - 'il' => 'Israel', |
320 | | - 'it' => 'Italy', |
321 | | - 'jm' => 'Jamaica', |
322 | | - 'jp' => 'Japan', |
323 | | - 'jo' => 'Jordan', |
324 | | - 'kz' => 'Kazakhstan', |
325 | | - 'ke' => 'Kenya', |
326 | | - 'ki' => 'Kiribati', |
327 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
328 | | - 'kr' => 'Republic of Korea', |
329 | | - 'kw' => 'Kuwait', |
330 | | - 'kg' => 'Kyrgyzstan', |
331 | | - 'la' => 'Lao People\'s Democratic Republic', |
332 | | - 'lv' => 'Latvia', |
333 | | - 'lb' => 'Lebanon', |
334 | | - 'ls' => 'Lesotho', |
335 | | - 'lr' => 'Liberia', |
336 | | - 'ly' => 'Libyan Arab Jamahiriya', |
337 | | - 'li' => 'Liechtenstein', |
338 | | - 'lt' => 'Lithuania', |
339 | | - 'lu' => 'Luxembourg', |
340 | | - 'mo' => 'Macao', |
341 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
342 | | - 'mg' => 'Madagascar', |
343 | | - 'mw' => 'Malawi', |
344 | | - 'my' => 'Malaysia', |
345 | | - 'mv' => 'Maldives', |
346 | | - 'ml' => 'Mali', |
347 | | - 'mt' => 'Malta', |
348 | | - 'mh' => 'Marshall Islands', |
349 | | - 'mq' => 'Martinique', |
350 | | - 'mr' => 'Mauritania', |
351 | | - 'mu' => 'Mauritius', |
352 | | - 'yt' => 'Mayotte', |
353 | | - 'mx' => 'Mexico', |
354 | | - 'fm' => 'Micronesia, Federated States of', |
355 | | - 'md' => 'Moldova, Republic of', |
356 | | - 'mc' => 'Monaco SAR', |
357 | | - 'mn' => 'Mongolia', |
358 | | - 'me' => 'Montenegro', |
359 | | - 'ms' => 'Montserrat', |
360 | | - 'ma' => 'Morocco', |
361 | | - 'mz' => 'Mozambique', |
362 | | - 'na' => 'Namibia', |
363 | | - 'nr' => 'Nauru', |
364 | | - 'np' => 'Nepal', |
365 | | - 'nl' => 'Netherlands', |
366 | | - 'an' => 'Netherlands Antilles', |
367 | | - 'nc' => 'New Caledonia', |
368 | | - 'nz' => 'New Zealand', |
369 | | - 'ni' => 'Nicaragua', |
370 | | - 'ne' => 'Niger', |
371 | | - 'ng' => 'Nigeria', |
372 | | - 'nu' => 'Niue', |
373 | | - 'nf' => 'Norfolk Island', |
374 | | - 'mp' => 'Northern Mariana Islands', |
375 | | - 'no' => 'Norway', |
376 | | - 'om' => 'Oman', |
377 | | - 'pk' => 'Pakistan', |
378 | | - 'pw' => 'Palau', |
379 | | - 'ps' => 'Palestinian Territory', |
380 | | - 'pa' => 'Panama', |
381 | | - 'pg' => 'Papua New Guinea', |
382 | | - 'py' => 'Paraguay', |
383 | | - 'pe' => 'Peru', |
384 | | - 'ph' => 'Philippines', |
385 | | - 'pn' => 'Pitcairn', |
386 | | - 'pl' => 'Poland', |
387 | | - 'pt' => 'Portugal', |
388 | | - 'pr' => 'Puerto Rico', |
389 | | - 'qa' => 'Qatar', |
390 | | - 're' => 'Reunion', |
391 | | - 'ro' => 'Romania', |
392 | | - 'ru' => 'Russian Federation', |
393 | | - 'rw' => 'Rwanda', |
394 | | - 'sh' => 'Saint Helena', |
395 | | - 'kn' => 'Saint Kitts and Nevis', |
396 | | - 'lc' => 'Saint Lucia', |
397 | | - 'pm' => 'Saint Pierre and Miquelon', |
398 | | - 'vc' => 'Saint Vincent and the Grenadines', |
399 | | - 'ws' => 'Samoa', |
400 | | - 'sm' => 'San Marino', |
401 | | - 'st' => 'Sao Tome and Principe', |
402 | | - 'sa' => 'Saudi Arabia', |
403 | | - 'sn' => 'Senegal', |
404 | | - 'rs' => 'Serbia', |
405 | | - 'sc' => 'Seychelles', |
406 | | - 'sl' => 'Sierra Leone', |
407 | | - 'sg' => 'Singapore', |
408 | | - 'sk' => 'Slovakia', |
409 | | - 'si' => 'Slovenia', |
410 | | - 'sb' => 'Solomon Islands', |
411 | | - 'so' => 'Somalia', |
412 | | - 'za' => 'South Africa', |
413 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
414 | | - 'es' => 'Spain', |
415 | | - 'lk' => 'Sri Lanka', |
416 | | - 'sd' => 'Sudan', |
417 | | - 'sr' => 'Suriname', |
418 | | - 'sj' => 'Svalbard and Jan Mayen', |
419 | | - 'sz' => 'Swaziland', |
420 | | - 'se' => 'Sweden', |
421 | | - 'ch' => 'Switzerland', |
422 | | - 'sy' => 'Syrian Arab Republic', |
423 | | - 'tj' => 'Tajikistan', |
424 | | - 'tz' => 'Tanzania, United Republic of', |
425 | | - 'th' => 'Thailand', |
426 | | - 'tl' => 'Timor-leste', |
427 | | - 'tg' => 'Togo', |
428 | | - 'tk' => 'Tokelau', |
429 | | - 'to' => 'Tonga', |
430 | | - 'tt' => 'Trinidad and Tobago', |
431 | | - 'tn' => 'Tunisia', |
432 | | - 'tr' => 'Turkey', |
433 | | - 'tm' => 'Turkmenistan', |
434 | | - 'tc' => 'Turks and Caicos Islands', |
435 | | - 'tv' => 'Tuvalu', |
436 | | - 'ug' => 'Uganda', |
437 | | - 'ua' => 'Ukraine', |
438 | | - 'ae' => 'United Arab Emirates', |
439 | | - 'gb' => 'United Kingdom', |
440 | | - 'us' => 'United States', |
441 | | - 'um' => 'United States Minor Outlying Islands', |
442 | | - 'uy' => 'Uruguay', |
443 | | - 'uz' => 'Uzbekistan', |
444 | | - 'vu' => 'Vanuatu', |
445 | | - 've' => 'Venezuela', |
446 | | - 'vn' => 'Viet Nam', |
447 | | - 'vg' => 'Virgin Islands, British', |
448 | | - 'vi' => 'Virgin Islands, U.S.', |
449 | | - 'wf' => 'Wallis and Futuna', |
450 | | - 'eh' => 'Western Sahara', |
451 | | - 'ye' => 'Yemen', |
452 | | - 'zm' => 'Zambia', |
453 | | - 'zw' => 'Zimbabwe' |
| 213 | + 'af' => 'Afghanistan', |
| 214 | + 'ax' => 'Aland Islands', |
| 215 | + 'al' => 'Albania', |
| 216 | + 'dz' => 'Algeria', |
| 217 | + 'as' => 'American Samoa', |
| 218 | + 'ad' => 'Andorra', |
| 219 | + 'ao' => 'Angola', |
| 220 | + 'ai' => 'Anguilla', |
| 221 | + 'aq' => 'Antarctica', |
| 222 | + 'ag' => 'Antigua and Barbuda', |
| 223 | + 'ar' => 'Argentina', |
| 224 | + 'am' => 'Armenia', |
| 225 | + 'aw' => 'Aruba', |
| 226 | + 'au' => 'Australia', |
| 227 | + 'at' => 'Austria', |
| 228 | + 'az' => 'Azerbaijan', |
| 229 | + 'bs' => 'Bahamas', |
| 230 | + 'bh' => 'Bahrain', |
| 231 | + 'bd' => 'Bangladesh', |
| 232 | + 'bb' => 'Barbados', |
| 233 | + 'by' => 'Belarus', |
| 234 | + 'be' => 'Belgium', |
| 235 | + 'bz' => 'Belize', |
| 236 | + 'bj' => 'Benin', |
| 237 | + 'bm' => 'Bermuda', |
| 238 | + 'bt' => 'Bhutan', |
| 239 | + 'bo' => 'Bolivia', |
| 240 | + 'ba' => 'Bosnia and Herzegovina', |
| 241 | + 'bw' => 'Botswana', |
| 242 | + 'bv' => 'Bouvet Island', |
| 243 | + 'br' => 'Brazil', |
| 244 | + 'io' => 'British Indian Ocean Territory', |
| 245 | + 'bn' => 'Brunei Darussalam', |
| 246 | + 'bg' => 'Bulgaria', |
| 247 | + 'bf' => 'Burkina Faso', |
| 248 | + 'mm' => 'Burma (Myanmar)', |
| 249 | + 'bi' => 'Burundi', |
| 250 | + 'kh' => 'Cambodia', |
| 251 | + 'cm' => 'Cameroon', |
| 252 | + 'ca' => 'Canada', |
| 253 | + 'cv' => 'Cape Verde', |
| 254 | + 'ky' => 'Cayman Islands', |
| 255 | + 'cf' => 'Central African Republic', |
| 256 | + 'td' => 'Chad', |
| 257 | + 'cl' => 'Chile', |
| 258 | + 'hk' => 'Hong Kong SAR', |
| 259 | + 'cn' => 'People\'s Republic of China', |
| 260 | + 'tw' => 'Republic of China (Taiwan)', |
| 261 | + 'cx' => 'Christmas Island', |
| 262 | + 'cc' => 'Cocos (keeling) Islands', |
| 263 | + 'co' => 'Colombia', |
| 264 | + 'km' => 'Comoros', |
| 265 | + 'cg' => 'Congo', |
| 266 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 267 | + 'ck' => 'Cook Islands', |
| 268 | + 'cr' => 'Costa Rica', |
| 269 | + 'ci' => 'Cote D\'ivoire', |
| 270 | + 'hr' => 'Croatia', |
| 271 | + 'cu' => 'Cuba', |
| 272 | + 'cy' => 'Cyprus', |
| 273 | + 'cz' => 'Czech Republic', |
| 274 | + 'dk' => 'Denmark', |
| 275 | + 'dj' => 'Djibouti', |
| 276 | + 'dm' => 'Dominica', |
| 277 | + 'do' => 'Dominican Republic', |
| 278 | + 'ec' => 'Ecuador', |
| 279 | + 'eg' => 'Egypt', |
| 280 | + 'sv' => 'El Salvador', |
| 281 | + 'gq' => 'Equatorial Guinea', |
| 282 | + 'er' => 'Eritrea', |
| 283 | + 'ee' => 'Estonia', |
| 284 | + 'et' => 'Ethiopia', |
| 285 | + 'fk' => 'Falkland Islands (malvinas)', |
| 286 | + 'fo' => 'Faroe Islands', |
| 287 | + 'fj' => 'Fiji', |
| 288 | + 'fi' => 'Finland', |
| 289 | + 'fr' => 'France', |
| 290 | + 'gf' => 'French Guiana', |
| 291 | + 'pf' => 'French Polynesia', |
| 292 | + 'tf' => 'French Southern Territories', |
| 293 | + 'ga' => 'Gabon', |
| 294 | + 'gm' => 'Gambia', |
| 295 | + 'ge' => 'Georgia', |
| 296 | + 'de' => 'Germany', |
| 297 | + 'gh' => 'Ghana', |
| 298 | + 'gi' => 'Gibraltar', |
| 299 | + 'gr' => 'Greece', |
| 300 | + 'gl' => 'Greenland', |
| 301 | + 'gd' => 'Grenada', |
| 302 | + 'gp' => 'Guadeloupe', |
| 303 | + 'gu' => 'Guam', |
| 304 | + 'gt' => 'Guatemala', |
| 305 | + 'gn' => 'Guinea', |
| 306 | + 'gw' => 'Guinea-Bissau', |
| 307 | + 'gy' => 'Guyana', |
| 308 | + 'ht' => 'Haiti', |
| 309 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 310 | + 'va' => 'Holy See (Vatican City)', |
| 311 | + 'hn' => 'Honduras', |
| 312 | + 'hu' => 'Hungary', |
| 313 | + 'is' => 'Iceland', |
| 314 | + 'in' => 'India', |
| 315 | + 'id' => 'Indonesia', |
| 316 | + 'ir' => 'Iran, Islamic Republic of', |
| 317 | + 'iq' => 'Iraq', |
| 318 | + 'ie' => 'Ireland', |
| 319 | + 'il' => 'Israel', |
| 320 | + 'it' => 'Italy', |
| 321 | + 'jm' => 'Jamaica', |
| 322 | + 'jp' => 'Japan', |
| 323 | + 'jo' => 'Jordan', |
| 324 | + 'kz' => 'Kazakhstan', |
| 325 | + 'ke' => 'Kenya', |
| 326 | + 'ki' => 'Kiribati', |
| 327 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 328 | + 'kr' => 'Republic of Korea', |
| 329 | + 'kw' => 'Kuwait', |
| 330 | + 'kg' => 'Kyrgyzstan', |
| 331 | + 'la' => 'Lao People\'s Democratic Republic', |
| 332 | + 'lv' => 'Latvia', |
| 333 | + 'lb' => 'Lebanon', |
| 334 | + 'ls' => 'Lesotho', |
| 335 | + 'lr' => 'Liberia', |
| 336 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 337 | + 'li' => 'Liechtenstein', |
| 338 | + 'lt' => 'Lithuania', |
| 339 | + 'lu' => 'Luxembourg', |
| 340 | + 'mo' => 'Macao', |
| 341 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 342 | + 'mg' => 'Madagascar', |
| 343 | + 'mw' => 'Malawi', |
| 344 | + 'my' => 'Malaysia', |
| 345 | + 'mv' => 'Maldives', |
| 346 | + 'ml' => 'Mali', |
| 347 | + 'mt' => 'Malta', |
| 348 | + 'mh' => 'Marshall Islands', |
| 349 | + 'mq' => 'Martinique', |
| 350 | + 'mr' => 'Mauritania', |
| 351 | + 'mu' => 'Mauritius', |
| 352 | + 'yt' => 'Mayotte', |
| 353 | + 'mx' => 'Mexico', |
| 354 | + 'fm' => 'Micronesia, Federated States of', |
| 355 | + 'md' => 'Moldova, Republic of', |
| 356 | + 'mc' => 'Monaco SAR', |
| 357 | + 'mn' => 'Mongolia', |
| 358 | + 'me' => 'Montenegro', |
| 359 | + 'ms' => 'Montserrat', |
| 360 | + 'ma' => 'Morocco', |
| 361 | + 'mz' => 'Mozambique', |
| 362 | + 'na' => 'Namibia', |
| 363 | + 'nr' => 'Nauru', |
| 364 | + 'np' => 'Nepal', |
| 365 | + 'nl' => 'Netherlands', |
| 366 | + 'an' => 'Netherlands Antilles', |
| 367 | + 'nc' => 'New Caledonia', |
| 368 | + 'nz' => 'New Zealand', |
| 369 | + 'ni' => 'Nicaragua', |
| 370 | + 'ne' => 'Niger', |
| 371 | + 'ng' => 'Nigeria', |
| 372 | + 'nu' => 'Niue', |
| 373 | + 'nf' => 'Norfolk Island', |
| 374 | + 'mp' => 'Northern Mariana Islands', |
| 375 | + 'no' => 'Norway', |
| 376 | + 'om' => 'Oman', |
| 377 | + 'pk' => 'Pakistan', |
| 378 | + 'pw' => 'Palau', |
| 379 | + 'ps' => 'Palestinian Territory', |
| 380 | + 'pa' => 'Panama', |
| 381 | + 'pg' => 'Papua New Guinea', |
| 382 | + 'py' => 'Paraguay', |
| 383 | + 'pe' => 'Peru', |
| 384 | + 'ph' => 'Philippines', |
| 385 | + 'pn' => 'Pitcairn', |
| 386 | + 'pl' => 'Poland', |
| 387 | + 'pt' => 'Portugal', |
| 388 | + 'pr' => 'Puerto Rico', |
| 389 | + 'qa' => 'Qatar', |
| 390 | + 're' => 'Reunion', |
| 391 | + 'ro' => 'Romania', |
| 392 | + 'ru' => 'Russian Federation', |
| 393 | + 'rw' => 'Rwanda', |
| 394 | + 'sh' => 'Saint Helena', |
| 395 | + 'kn' => 'Saint Kitts and Nevis', |
| 396 | + 'lc' => 'Saint Lucia', |
| 397 | + 'pm' => 'Saint Pierre and Miquelon', |
| 398 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 399 | + 'ws' => 'Samoa', |
| 400 | + 'sm' => 'San Marino', |
| 401 | + 'st' => 'Sao Tome and Principe', |
| 402 | + 'sa' => 'Saudi Arabia', |
| 403 | + 'sn' => 'Senegal', |
| 404 | + 'rs' => 'Serbia', |
| 405 | + 'sc' => 'Seychelles', |
| 406 | + 'sl' => 'Sierra Leone', |
| 407 | + 'sg' => 'Singapore', |
| 408 | + 'sk' => 'Slovakia', |
| 409 | + 'si' => 'Slovenia', |
| 410 | + 'sb' => 'Solomon Islands', |
| 411 | + 'so' => 'Somalia', |
| 412 | + 'za' => 'South Africa', |
| 413 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 414 | + 'es' => 'Spain', |
| 415 | + 'lk' => 'Sri Lanka', |
| 416 | + 'sd' => 'Sudan', |
| 417 | + 'sr' => 'Suriname', |
| 418 | + 'sj' => 'Svalbard and Jan Mayen', |
| 419 | + 'sz' => 'Swaziland', |
| 420 | + 'se' => 'Sweden', |
| 421 | + 'ch' => 'Switzerland', |
| 422 | + 'sy' => 'Syrian Arab Republic', |
| 423 | + 'tj' => 'Tajikistan', |
| 424 | + 'tz' => 'Tanzania, United Republic of', |
| 425 | + 'th' => 'Thailand', |
| 426 | + 'tl' => 'Timor-leste', |
| 427 | + 'tg' => 'Togo', |
| 428 | + 'tk' => 'Tokelau', |
| 429 | + 'to' => 'Tonga', |
| 430 | + 'tt' => 'Trinidad and Tobago', |
| 431 | + 'tn' => 'Tunisia', |
| 432 | + 'tr' => 'Turkey', |
| 433 | + 'tm' => 'Turkmenistan', |
| 434 | + 'tc' => 'Turks and Caicos Islands', |
| 435 | + 'tv' => 'Tuvalu', |
| 436 | + 'ug' => 'Uganda', |
| 437 | + 'ua' => 'Ukraine', |
| 438 | + 'ae' => 'United Arab Emirates', |
| 439 | + 'gb' => 'United Kingdom', |
| 440 | + 'us' => 'United States', |
| 441 | + 'um' => 'United States Minor Outlying Islands', |
| 442 | + 'uy' => 'Uruguay', |
| 443 | + 'uz' => 'Uzbekistan', |
| 444 | + 'vu' => 'Vanuatu', |
| 445 | + 've' => 'Venezuela', |
| 446 | + 'vn' => 'Viet Nam', |
| 447 | + 'vg' => 'Virgin Islands, British', |
| 448 | + 'vi' => 'Virgin Islands, U.S.', |
| 449 | + 'wf' => 'Wallis and Futuna', |
| 450 | + 'eh' => 'Western Sahara', |
| 451 | + 'ye' => 'Yemen', |
| 452 | + 'zm' => 'Zambia', |
| 453 | + 'zw' => 'Zimbabwe' |
454 | 454 | ); |
455 | 455 | |
Index: trunk/wikimania/wmreg/includes/language_he.php |
— | — | @@ -204,246 +204,246 @@ |
205 | 205 | ); |
206 | 206 | |
207 | 207 | $lang_countries = array( |
208 | | - 'af' => 'Afghanistan', |
209 | | - 'ax' => 'Aland Islands', |
210 | | - 'al' => 'Albania', |
211 | | - 'dz' => 'Algeria', |
212 | | - 'as' => 'American Samoa', |
213 | | - 'ad' => 'Andorra', |
214 | | - 'ao' => 'Angola', |
215 | | - 'ai' => 'Anguilla', |
216 | | - 'aq' => 'Antarctica', |
217 | | - 'ag' => 'Antigua and Barbuda', |
218 | | - 'ar' => 'Argentina', |
219 | | - 'am' => 'Armenia', |
220 | | - 'aw' => 'Aruba', |
221 | | - 'au' => 'Australia', |
222 | | - 'at' => 'Austria', |
223 | | - 'az' => 'Azerbaijan', |
224 | | - 'bs' => 'Bahamas', |
225 | | - 'bh' => 'Bahrain', |
226 | | - 'bd' => 'Bangladesh', |
227 | | - 'bb' => 'Barbados', |
228 | | - 'by' => 'Belarus', |
229 | | - 'be' => 'Belgium', |
230 | | - 'bz' => 'Belize', |
231 | | - 'bj' => 'Benin', |
232 | | - 'bm' => 'Bermuda', |
233 | | - 'bt' => 'Bhutan', |
234 | | - 'bo' => 'Bolivia', |
235 | | - 'ba' => 'Bosnia and Herzegovina', |
236 | | - 'bw' => 'Botswana', |
237 | | - 'bv' => 'Bouvet Island', |
238 | | - 'br' => 'Brazil', |
239 | | - 'io' => 'British Indian Ocean Territory', |
240 | | - 'bn' => 'Brunei Darussalam', |
241 | | - 'bg' => 'Bulgaria', |
242 | | - 'bf' => 'Burkina Faso', |
243 | | - 'mm' => 'Burma (Myanmar)', |
244 | | - 'bi' => 'Burundi', |
245 | | - 'kh' => 'Cambodia', |
246 | | - 'cm' => 'Cameroon', |
247 | | - 'ca' => 'Canada', |
248 | | - 'cv' => 'Cape Verde', |
249 | | - 'ky' => 'Cayman Islands', |
250 | | - 'cf' => 'Central African Republic', |
251 | | - 'td' => 'Chad', |
252 | | - 'cl' => 'Chile', |
253 | | - 'hk' => 'Hong Kong SAR', |
254 | | - 'cn' => 'People\'s Republic of China', |
255 | | - 'tw' => 'Republic of China (Taiwan)', |
256 | | - 'cx' => 'Christmas Island', |
257 | | - 'cc' => 'Cocos (keeling) Islands', |
258 | | - 'co' => 'Colombia', |
259 | | - 'km' => 'Comoros', |
260 | | - 'cg' => 'Congo', |
261 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
262 | | - 'ck' => 'Cook Islands', |
263 | | - 'cr' => 'Costa Rica', |
264 | | - 'ci' => 'Cote D\'ivoire', |
265 | | - 'hr' => 'Croatia', |
266 | | - 'cu' => 'Cuba', |
267 | | - 'cy' => 'Cyprus', |
268 | | - 'cz' => 'Czech Republic', |
269 | | - 'dk' => 'Denmark', |
270 | | - 'dj' => 'Djibouti', |
271 | | - 'dm' => 'Dominica', |
272 | | - 'do' => 'Dominican Republic', |
273 | | - 'ec' => 'Ecuador', |
274 | | - 'eg' => 'Egypt', |
275 | | - 'sv' => 'El Salvador', |
276 | | - 'gq' => 'Equatorial Guinea', |
277 | | - 'er' => 'Eritrea', |
278 | | - 'ee' => 'Estonia', |
279 | | - 'et' => 'Ethiopia', |
280 | | - 'fk' => 'Falkland Islands (malvinas)', |
281 | | - 'fo' => 'Faroe Islands', |
282 | | - 'fj' => 'Fiji', |
283 | | - 'fi' => 'Finland', |
284 | | - 'fr' => 'France', |
285 | | - 'gf' => 'French Guiana', |
286 | | - 'pf' => 'French Polynesia', |
287 | | - 'tf' => 'French Southern Territories', |
288 | | - 'ga' => 'Gabon', |
289 | | - 'gm' => 'Gambia', |
290 | | - 'ge' => 'Georgia', |
291 | | - 'de' => 'Germany', |
292 | | - 'gh' => 'Ghana', |
293 | | - 'gi' => 'Gibraltar', |
294 | | - 'gr' => 'Greece', |
295 | | - 'gl' => 'Greenland', |
296 | | - 'gd' => 'Grenada', |
297 | | - 'gp' => 'Guadeloupe', |
298 | | - 'gu' => 'Guam', |
299 | | - 'gt' => 'Guatemala', |
300 | | - 'gn' => 'Guinea', |
301 | | - 'gw' => 'Guinea-Bissau', |
302 | | - 'gy' => 'Guyana', |
303 | | - 'ht' => 'Haiti', |
304 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
305 | | - 'va' => 'Holy See (Vatican City)', |
306 | | - 'hn' => 'Honduras', |
307 | | - 'hu' => 'Hungary', |
308 | | - 'is' => 'Iceland', |
309 | | - 'in' => 'India', |
310 | | - 'id' => 'Indonesia', |
311 | | - 'ir' => 'Iran, Islamic Republic of', |
312 | | - 'iq' => 'Iraq', |
313 | | - 'ie' => 'Ireland', |
314 | | - 'il' => 'Israel', |
315 | | - 'it' => 'Italy', |
316 | | - 'jm' => 'Jamaica', |
317 | | - 'jp' => 'Japan', |
318 | | - 'jo' => 'Jordan', |
319 | | - 'kz' => 'Kazakhstan', |
320 | | - 'ke' => 'Kenya', |
321 | | - 'ki' => 'Kiribati', |
322 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
323 | | - 'kr' => 'Republic of Korea', |
324 | | - 'kw' => 'Kuwait', |
325 | | - 'kg' => 'Kyrgyzstan', |
326 | | - 'la' => 'Lao People\'s Democratic Republic', |
327 | | - 'lv' => 'Latvia', |
328 | | - 'lb' => 'Lebanon', |
329 | | - 'ls' => 'Lesotho', |
330 | | - 'lr' => 'Liberia', |
331 | | - 'ly' => 'Libyan Arab Jamahiriya', |
332 | | - 'li' => 'Liechtenstein', |
333 | | - 'lt' => 'Lithuania', |
334 | | - 'lu' => 'Luxembourg', |
335 | | - 'mo' => 'Macao', |
336 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
337 | | - 'mg' => 'Madagascar', |
338 | | - 'mw' => 'Malawi', |
339 | | - 'my' => 'Malaysia', |
340 | | - 'mv' => 'Maldives', |
341 | | - 'ml' => 'Mali', |
342 | | - 'mt' => 'Malta', |
343 | | - 'mh' => 'Marshall Islands', |
344 | | - 'mq' => 'Martinique', |
345 | | - 'mr' => 'Mauritania', |
346 | | - 'mu' => 'Mauritius', |
347 | | - 'yt' => 'Mayotte', |
348 | | - 'mx' => 'Mexico', |
349 | | - 'fm' => 'Micronesia, Federated States of', |
350 | | - 'md' => 'Moldova, Republic of', |
351 | | - 'mc' => 'Monaco SAR', |
352 | | - 'mn' => 'Mongolia', |
| 208 | + 'af' => 'Afghanistan', |
| 209 | + 'ax' => 'Aland Islands', |
| 210 | + 'al' => 'Albania', |
| 211 | + 'dz' => 'Algeria', |
| 212 | + 'as' => 'American Samoa', |
| 213 | + 'ad' => 'Andorra', |
| 214 | + 'ao' => 'Angola', |
| 215 | + 'ai' => 'Anguilla', |
| 216 | + 'aq' => 'Antarctica', |
| 217 | + 'ag' => 'Antigua and Barbuda', |
| 218 | + 'ar' => 'Argentina', |
| 219 | + 'am' => 'Armenia', |
| 220 | + 'aw' => 'Aruba', |
| 221 | + 'au' => 'Australia', |
| 222 | + 'at' => 'Austria', |
| 223 | + 'az' => 'Azerbaijan', |
| 224 | + 'bs' => 'Bahamas', |
| 225 | + 'bh' => 'Bahrain', |
| 226 | + 'bd' => 'Bangladesh', |
| 227 | + 'bb' => 'Barbados', |
| 228 | + 'by' => 'Belarus', |
| 229 | + 'be' => 'Belgium', |
| 230 | + 'bz' => 'Belize', |
| 231 | + 'bj' => 'Benin', |
| 232 | + 'bm' => 'Bermuda', |
| 233 | + 'bt' => 'Bhutan', |
| 234 | + 'bo' => 'Bolivia', |
| 235 | + 'ba' => 'Bosnia and Herzegovina', |
| 236 | + 'bw' => 'Botswana', |
| 237 | + 'bv' => 'Bouvet Island', |
| 238 | + 'br' => 'Brazil', |
| 239 | + 'io' => 'British Indian Ocean Territory', |
| 240 | + 'bn' => 'Brunei Darussalam', |
| 241 | + 'bg' => 'Bulgaria', |
| 242 | + 'bf' => 'Burkina Faso', |
| 243 | + 'mm' => 'Burma (Myanmar)', |
| 244 | + 'bi' => 'Burundi', |
| 245 | + 'kh' => 'Cambodia', |
| 246 | + 'cm' => 'Cameroon', |
| 247 | + 'ca' => 'Canada', |
| 248 | + 'cv' => 'Cape Verde', |
| 249 | + 'ky' => 'Cayman Islands', |
| 250 | + 'cf' => 'Central African Republic', |
| 251 | + 'td' => 'Chad', |
| 252 | + 'cl' => 'Chile', |
| 253 | + 'hk' => 'Hong Kong SAR', |
| 254 | + 'cn' => 'People\'s Republic of China', |
| 255 | + 'tw' => 'Republic of China (Taiwan)', |
| 256 | + 'cx' => 'Christmas Island', |
| 257 | + 'cc' => 'Cocos (keeling) Islands', |
| 258 | + 'co' => 'Colombia', |
| 259 | + 'km' => 'Comoros', |
| 260 | + 'cg' => 'Congo', |
| 261 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 262 | + 'ck' => 'Cook Islands', |
| 263 | + 'cr' => 'Costa Rica', |
| 264 | + 'ci' => 'Cote D\'ivoire', |
| 265 | + 'hr' => 'Croatia', |
| 266 | + 'cu' => 'Cuba', |
| 267 | + 'cy' => 'Cyprus', |
| 268 | + 'cz' => 'Czech Republic', |
| 269 | + 'dk' => 'Denmark', |
| 270 | + 'dj' => 'Djibouti', |
| 271 | + 'dm' => 'Dominica', |
| 272 | + 'do' => 'Dominican Republic', |
| 273 | + 'ec' => 'Ecuador', |
| 274 | + 'eg' => 'Egypt', |
| 275 | + 'sv' => 'El Salvador', |
| 276 | + 'gq' => 'Equatorial Guinea', |
| 277 | + 'er' => 'Eritrea', |
| 278 | + 'ee' => 'Estonia', |
| 279 | + 'et' => 'Ethiopia', |
| 280 | + 'fk' => 'Falkland Islands (malvinas)', |
| 281 | + 'fo' => 'Faroe Islands', |
| 282 | + 'fj' => 'Fiji', |
| 283 | + 'fi' => 'Finland', |
| 284 | + 'fr' => 'France', |
| 285 | + 'gf' => 'French Guiana', |
| 286 | + 'pf' => 'French Polynesia', |
| 287 | + 'tf' => 'French Southern Territories', |
| 288 | + 'ga' => 'Gabon', |
| 289 | + 'gm' => 'Gambia', |
| 290 | + 'ge' => 'Georgia', |
| 291 | + 'de' => 'Germany', |
| 292 | + 'gh' => 'Ghana', |
| 293 | + 'gi' => 'Gibraltar', |
| 294 | + 'gr' => 'Greece', |
| 295 | + 'gl' => 'Greenland', |
| 296 | + 'gd' => 'Grenada', |
| 297 | + 'gp' => 'Guadeloupe', |
| 298 | + 'gu' => 'Guam', |
| 299 | + 'gt' => 'Guatemala', |
| 300 | + 'gn' => 'Guinea', |
| 301 | + 'gw' => 'Guinea-Bissau', |
| 302 | + 'gy' => 'Guyana', |
| 303 | + 'ht' => 'Haiti', |
| 304 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 305 | + 'va' => 'Holy See (Vatican City)', |
| 306 | + 'hn' => 'Honduras', |
| 307 | + 'hu' => 'Hungary', |
| 308 | + 'is' => 'Iceland', |
| 309 | + 'in' => 'India', |
| 310 | + 'id' => 'Indonesia', |
| 311 | + 'ir' => 'Iran, Islamic Republic of', |
| 312 | + 'iq' => 'Iraq', |
| 313 | + 'ie' => 'Ireland', |
| 314 | + 'il' => 'Israel', |
| 315 | + 'it' => 'Italy', |
| 316 | + 'jm' => 'Jamaica', |
| 317 | + 'jp' => 'Japan', |
| 318 | + 'jo' => 'Jordan', |
| 319 | + 'kz' => 'Kazakhstan', |
| 320 | + 'ke' => 'Kenya', |
| 321 | + 'ki' => 'Kiribati', |
| 322 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 323 | + 'kr' => 'Republic of Korea', |
| 324 | + 'kw' => 'Kuwait', |
| 325 | + 'kg' => 'Kyrgyzstan', |
| 326 | + 'la' => 'Lao People\'s Democratic Republic', |
| 327 | + 'lv' => 'Latvia', |
| 328 | + 'lb' => 'Lebanon', |
| 329 | + 'ls' => 'Lesotho', |
| 330 | + 'lr' => 'Liberia', |
| 331 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 332 | + 'li' => 'Liechtenstein', |
| 333 | + 'lt' => 'Lithuania', |
| 334 | + 'lu' => 'Luxembourg', |
| 335 | + 'mo' => 'Macao', |
| 336 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 337 | + 'mg' => 'Madagascar', |
| 338 | + 'mw' => 'Malawi', |
| 339 | + 'my' => 'Malaysia', |
| 340 | + 'mv' => 'Maldives', |
| 341 | + 'ml' => 'Mali', |
| 342 | + 'mt' => 'Malta', |
| 343 | + 'mh' => 'Marshall Islands', |
| 344 | + 'mq' => 'Martinique', |
| 345 | + 'mr' => 'Mauritania', |
| 346 | + 'mu' => 'Mauritius', |
| 347 | + 'yt' => 'Mayotte', |
| 348 | + 'mx' => 'Mexico', |
| 349 | + 'fm' => 'Micronesia, Federated States of', |
| 350 | + 'md' => 'Moldova, Republic of', |
| 351 | + 'mc' => 'Monaco SAR', |
| 352 | + 'mn' => 'Mongolia', |
353 | 353 | 'me' => 'Montenegro', |
354 | | - 'ms' => 'Montserrat', |
355 | | - 'ma' => 'Morocco', |
356 | | - 'mz' => 'Mozambique', |
357 | | - 'na' => 'Namibia', |
358 | | - 'nr' => 'Nauru', |
359 | | - 'np' => 'Nepal', |
360 | | - 'nl' => 'Netherlands', |
361 | | - 'an' => 'Netherlands Antilles', |
362 | | - 'nc' => 'New Caledonia', |
363 | | - 'nz' => 'New Zealand', |
364 | | - 'ni' => 'Nicaragua', |
365 | | - 'ne' => 'Niger', |
366 | | - 'ng' => 'Nigeria', |
367 | | - 'nu' => 'Niue', |
368 | | - 'nf' => 'Norfolk Island', |
369 | | - 'mp' => 'Northern Mariana Islands', |
370 | | - 'no' => 'Norway', |
371 | | - 'om' => 'Oman', |
372 | | - 'pk' => 'Pakistan', |
373 | | - 'pw' => 'Palau', |
374 | | - 'ps' => 'Palestinian Territory', |
375 | | - 'pa' => 'Panama', |
376 | | - 'pg' => 'Papua New Guinea', |
377 | | - 'py' => 'Paraguay', |
378 | | - 'pe' => 'Peru', |
379 | | - 'ph' => 'Philippines', |
380 | | - 'pn' => 'Pitcairn', |
381 | | - 'pl' => 'Poland', |
382 | | - 'pt' => 'Portugal', |
383 | | - 'pr' => 'Puerto Rico', |
384 | | - 'qa' => 'Qatar', |
385 | | - 're' => 'Reunion', |
386 | | - 'ro' => 'Romania', |
387 | | - 'ru' => 'Russian Federation', |
388 | | - 'rw' => 'Rwanda', |
389 | | - 'sh' => 'Saint Helena', |
390 | | - 'kn' => 'Saint Kitts and Nevis', |
391 | | - 'lc' => 'Saint Lucia', |
392 | | - 'pm' => 'Saint Pierre and Miquelon', |
393 | | - 'vc' => 'Saint Vincent and the Grenadines', |
394 | | - 'ws' => 'Samoa', |
395 | | - 'sm' => 'San Marino', |
396 | | - 'st' => 'Sao Tome and Principe', |
397 | | - 'sa' => 'Saudi Arabia', |
398 | | - 'sn' => 'Senegal', |
399 | | - 'rs' => 'Serbia', |
400 | | - 'sc' => 'Seychelles', |
401 | | - 'sl' => 'Sierra Leone', |
402 | | - 'sg' => 'Singapore', |
403 | | - 'sk' => 'Slovakia', |
404 | | - 'si' => 'Slovenia', |
405 | | - 'sb' => 'Solomon Islands', |
406 | | - 'so' => 'Somalia', |
407 | | - 'za' => 'South Africa', |
408 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
409 | | - 'es' => 'Spain', |
410 | | - 'lk' => 'Sri Lanka', |
411 | | - 'sd' => 'Sudan', |
412 | | - 'sr' => 'Suriname', |
413 | | - 'sj' => 'Svalbard and Jan Mayen', |
414 | | - 'sz' => 'Swaziland', |
415 | | - 'se' => 'Sweden', |
416 | | - 'ch' => 'Switzerland', |
417 | | - 'sy' => 'Syrian Arab Republic', |
418 | | - 'tj' => 'Tajikistan', |
419 | | - 'tz' => 'Tanzania, United Republic of', |
420 | | - 'th' => 'Thailand', |
421 | | - 'tl' => 'Timor-leste', |
422 | | - 'tg' => 'Togo', |
423 | | - 'tk' => 'Tokelau', |
424 | | - 'to' => 'Tonga', |
425 | | - 'tt' => 'Trinidad and Tobago', |
426 | | - 'tn' => 'Tunisia', |
427 | | - 'tr' => 'Turkey', |
428 | | - 'tm' => 'Turkmenistan', |
429 | | - 'tc' => 'Turks and Caicos Islands', |
430 | | - 'tv' => 'Tuvalu', |
431 | | - 'ug' => 'Uganda', |
432 | | - 'ua' => 'Ukraine', |
433 | | - 'ae' => 'United Arab Emirates', |
434 | | - 'gb' => 'United Kingdom', |
435 | | - 'us' => 'United States', |
436 | | - 'um' => 'United States Minor Outlying Islands', |
437 | | - 'uy' => 'Uruguay', |
438 | | - 'uz' => 'Uzbekistan', |
439 | | - 'vu' => 'Vanuatu', |
440 | | - 've' => 'Venezuela', |
441 | | - 'vn' => 'Viet Nam', |
442 | | - 'vg' => 'Virgin Islands, British', |
443 | | - 'vi' => 'Virgin Islands, U.S.', |
444 | | - 'wf' => 'Wallis and Futuna', |
445 | | - 'eh' => 'Western Sahara', |
446 | | - 'ye' => 'Yemen', |
447 | | - 'zm' => 'Zambia', |
448 | | - 'zw' => 'Zimbabwe' |
| 354 | + 'ms' => 'Montserrat', |
| 355 | + 'ma' => 'Morocco', |
| 356 | + 'mz' => 'Mozambique', |
| 357 | + 'na' => 'Namibia', |
| 358 | + 'nr' => 'Nauru', |
| 359 | + 'np' => 'Nepal', |
| 360 | + 'nl' => 'Netherlands', |
| 361 | + 'an' => 'Netherlands Antilles', |
| 362 | + 'nc' => 'New Caledonia', |
| 363 | + 'nz' => 'New Zealand', |
| 364 | + 'ni' => 'Nicaragua', |
| 365 | + 'ne' => 'Niger', |
| 366 | + 'ng' => 'Nigeria', |
| 367 | + 'nu' => 'Niue', |
| 368 | + 'nf' => 'Norfolk Island', |
| 369 | + 'mp' => 'Northern Mariana Islands', |
| 370 | + 'no' => 'Norway', |
| 371 | + 'om' => 'Oman', |
| 372 | + 'pk' => 'Pakistan', |
| 373 | + 'pw' => 'Palau', |
| 374 | + 'ps' => 'Palestinian Territory', |
| 375 | + 'pa' => 'Panama', |
| 376 | + 'pg' => 'Papua New Guinea', |
| 377 | + 'py' => 'Paraguay', |
| 378 | + 'pe' => 'Peru', |
| 379 | + 'ph' => 'Philippines', |
| 380 | + 'pn' => 'Pitcairn', |
| 381 | + 'pl' => 'Poland', |
| 382 | + 'pt' => 'Portugal', |
| 383 | + 'pr' => 'Puerto Rico', |
| 384 | + 'qa' => 'Qatar', |
| 385 | + 're' => 'Reunion', |
| 386 | + 'ro' => 'Romania', |
| 387 | + 'ru' => 'Russian Federation', |
| 388 | + 'rw' => 'Rwanda', |
| 389 | + 'sh' => 'Saint Helena', |
| 390 | + 'kn' => 'Saint Kitts and Nevis', |
| 391 | + 'lc' => 'Saint Lucia', |
| 392 | + 'pm' => 'Saint Pierre and Miquelon', |
| 393 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 394 | + 'ws' => 'Samoa', |
| 395 | + 'sm' => 'San Marino', |
| 396 | + 'st' => 'Sao Tome and Principe', |
| 397 | + 'sa' => 'Saudi Arabia', |
| 398 | + 'sn' => 'Senegal', |
| 399 | + 'rs' => 'Serbia', |
| 400 | + 'sc' => 'Seychelles', |
| 401 | + 'sl' => 'Sierra Leone', |
| 402 | + 'sg' => 'Singapore', |
| 403 | + 'sk' => 'Slovakia', |
| 404 | + 'si' => 'Slovenia', |
| 405 | + 'sb' => 'Solomon Islands', |
| 406 | + 'so' => 'Somalia', |
| 407 | + 'za' => 'South Africa', |
| 408 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 409 | + 'es' => 'Spain', |
| 410 | + 'lk' => 'Sri Lanka', |
| 411 | + 'sd' => 'Sudan', |
| 412 | + 'sr' => 'Suriname', |
| 413 | + 'sj' => 'Svalbard and Jan Mayen', |
| 414 | + 'sz' => 'Swaziland', |
| 415 | + 'se' => 'Sweden', |
| 416 | + 'ch' => 'Switzerland', |
| 417 | + 'sy' => 'Syrian Arab Republic', |
| 418 | + 'tj' => 'Tajikistan', |
| 419 | + 'tz' => 'Tanzania, United Republic of', |
| 420 | + 'th' => 'Thailand', |
| 421 | + 'tl' => 'Timor-leste', |
| 422 | + 'tg' => 'Togo', |
| 423 | + 'tk' => 'Tokelau', |
| 424 | + 'to' => 'Tonga', |
| 425 | + 'tt' => 'Trinidad and Tobago', |
| 426 | + 'tn' => 'Tunisia', |
| 427 | + 'tr' => 'Turkey', |
| 428 | + 'tm' => 'Turkmenistan', |
| 429 | + 'tc' => 'Turks and Caicos Islands', |
| 430 | + 'tv' => 'Tuvalu', |
| 431 | + 'ug' => 'Uganda', |
| 432 | + 'ua' => 'Ukraine', |
| 433 | + 'ae' => 'United Arab Emirates', |
| 434 | + 'gb' => 'United Kingdom', |
| 435 | + 'us' => 'United States', |
| 436 | + 'um' => 'United States Minor Outlying Islands', |
| 437 | + 'uy' => 'Uruguay', |
| 438 | + 'uz' => 'Uzbekistan', |
| 439 | + 'vu' => 'Vanuatu', |
| 440 | + 've' => 'Venezuela', |
| 441 | + 'vn' => 'Viet Nam', |
| 442 | + 'vg' => 'Virgin Islands, British', |
| 443 | + 'vi' => 'Virgin Islands, U.S.', |
| 444 | + 'wf' => 'Wallis and Futuna', |
| 445 | + 'eh' => 'Western Sahara', |
| 446 | + 'ye' => 'Yemen', |
| 447 | + 'zm' => 'Zambia', |
| 448 | + 'zw' => 'Zimbabwe' |
449 | 449 | ); |
450 | 450 | |
Index: trunk/wikimania/wmreg/includes/language_it.php |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | 'day' => '', |
30 | 30 | |
31 | 31 | 'title2' => |
32 | | -' <p><strong>Lingue conosciute</strong></p>', |
| 32 | +' <p><strong>Lingue conosciute</strong></p>', |
33 | 33 | 'langn' => 'Lingua madre', |
34 | 34 | 'lang' => 'Livello di conoscenza', |
35 | 35 | 'select_lang' => 'Seleziona la lingua', |
— | — | @@ -86,8 +86,8 @@ |
87 | 87 | 'visa_assistance_description' => 'Qualsiasi richiesta particolare di assistenza per il visto (in <strong>inglese</strong>)', |
88 | 88 | |
89 | 89 | 'title5' => |
90 | | -' <p><strong>Alloggio</strong></p> |
91 | | - <p>Puoi alloggiare in un albergo o nelle residenze. Vedi <a href=http://wikimania2011.wikimedia.org/w/index.php?title=Accommodation/it&uselang=it>la pagina sugli alloggi</a> per informazioni precise su prezzi, posizione e altri dettagli.</p> |
| 90 | +' <p><strong>Alloggio</strong></p> |
| 91 | + <p>Puoi alloggiare in un albergo o nelle residenze. Vedi <a href=http://wikimania2011.wikimedia.org/w/index.php?title=Accommodation/it&uselang=it>la pagina sugli alloggi</a> per informazioni precise su prezzi, posizione e altri dettagli.</p> |
92 | 92 | ', |
93 | 93 | 'accommodation_hotel' => 'Alloggio preferito<br><b><small>(<a href=http://wikimania2011.wikimedia.org/wiki/Accommodation onClick="return popup(this, \'prices\')">Prezzi</a>)</small></b>', |
94 | 94 | 'hotel1' => 'Stanza nelle residenze', |
— | — | @@ -121,8 +121,8 @@ |
122 | 122 | 'room_partner' => 'Compagno/a di stanza', |
123 | 123 | |
124 | 124 | 'title6' => |
125 | | -' <p><strong>Pagamento</strong></p> |
126 | | - <p>Il pagamento delle spese di registrazione e alloggio va eseguito tramite PayPal al momento della registrazione.</p> |
| 125 | +' <p><strong>Pagamento</strong></p> |
| 126 | + <p>Il pagamento delle spese di registrazione e alloggio va eseguito tramite PayPal al momento della registrazione.</p> |
127 | 127 | ', |
128 | 128 | 'title7' => |
129 | 129 | '<p><strong>CAPTCHA</strong></p><p>Per confermare che sei un essere umano e non un robot, inserisci il codice.</p>', |
— | — | @@ -212,246 +212,246 @@ |
213 | 213 | |
214 | 214 | |
215 | 215 | $lang_countries = array( |
216 | | - 'af' => 'Afghanistan', |
217 | | - 'ax' => 'Aland Islands', |
218 | | - 'al' => 'Albania', |
219 | | - 'dz' => 'Algeria', |
220 | | - 'as' => 'American Samoa', |
221 | | - 'ad' => 'Andorra', |
222 | | - 'ao' => 'Angola', |
223 | | - 'ai' => 'Anguilla', |
224 | | - 'aq' => 'Antarctica', |
225 | | - 'ag' => 'Antigua and Barbuda', |
226 | | - 'ar' => 'Argentina', |
227 | | - 'am' => 'Armenia', |
228 | | - 'aw' => 'Aruba', |
229 | | - 'au' => 'Australia', |
230 | | - 'at' => 'Austria', |
231 | | - 'az' => 'Azerbaijan', |
232 | | - 'bs' => 'Bahamas', |
233 | | - 'bh' => 'Bahrain', |
234 | | - 'bd' => 'Bangladesh', |
235 | | - 'bb' => 'Barbados', |
236 | | - 'by' => 'Belarus', |
237 | | - 'be' => 'Belgium', |
238 | | - 'bz' => 'Belize', |
239 | | - 'bj' => 'Benin', |
240 | | - 'bm' => 'Bermuda', |
241 | | - 'bt' => 'Bhutan', |
242 | | - 'bo' => 'Bolivia', |
243 | | - 'ba' => 'Bosnia and Herzegovina', |
244 | | - 'bw' => 'Botswana', |
245 | | - 'bv' => 'Bouvet Island', |
246 | | - 'br' => 'Brazil', |
247 | | - 'io' => 'British Indian Ocean Territory', |
248 | | - 'bn' => 'Brunei Darussalam', |
249 | | - 'bg' => 'Bulgaria', |
250 | | - 'bf' => 'Burkina Faso', |
251 | | - 'mm' => 'Burma (Myanmar)', |
252 | | - 'bi' => 'Burundi', |
253 | | - 'kh' => 'Cambodia', |
254 | | - 'cm' => 'Cameroon', |
255 | | - 'ca' => 'Canada', |
256 | | - 'cv' => 'Cape Verde', |
257 | | - 'ky' => 'Cayman Islands', |
258 | | - 'cf' => 'Central African Republic', |
259 | | - 'td' => 'Chad', |
260 | | - 'cl' => 'Chile', |
261 | | - 'hk' => 'Hong Kong SAR', |
262 | | - 'cn' => 'People\'s Republic of China', |
263 | | - 'tw' => 'Republic of China (Taiwan)', |
264 | | - 'cx' => 'Christmas Island', |
265 | | - 'cc' => 'Cocos (keeling) Islands', |
266 | | - 'co' => 'Colombia', |
267 | | - 'km' => 'Comoros', |
268 | | - 'cg' => 'Congo', |
269 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
270 | | - 'ck' => 'Cook Islands', |
271 | | - 'cr' => 'Costa Rica', |
272 | | - 'ci' => 'Cote D\'ivoire', |
273 | | - 'hr' => 'Croatia', |
274 | | - 'cu' => 'Cuba', |
275 | | - 'cy' => 'Cyprus', |
276 | | - 'cz' => 'Czech Republic', |
277 | | - 'dk' => 'Denmark', |
278 | | - 'dj' => 'Djibouti', |
279 | | - 'dm' => 'Dominica', |
280 | | - 'do' => 'Dominican Republic', |
281 | | - 'ec' => 'Ecuador', |
282 | | - 'eg' => 'Egypt', |
283 | | - 'sv' => 'El Salvador', |
284 | | - 'gq' => 'Equatorial Guinea', |
285 | | - 'er' => 'Eritrea', |
286 | | - 'ee' => 'Estonia', |
287 | | - 'et' => 'Ethiopia', |
288 | | - 'fk' => 'Falkland Islands (malvinas)', |
289 | | - 'fo' => 'Faroe Islands', |
290 | | - 'fj' => 'Fiji', |
291 | | - 'fi' => 'Finland', |
292 | | - 'fr' => 'France', |
293 | | - 'gf' => 'French Guiana', |
294 | | - 'pf' => 'French Polynesia', |
295 | | - 'tf' => 'French Southern Territories', |
296 | | - 'ga' => 'Gabon', |
297 | | - 'gm' => 'Gambia', |
298 | | - 'ge' => 'Georgia', |
299 | | - 'de' => 'Germany', |
300 | | - 'gh' => 'Ghana', |
301 | | - 'gi' => 'Gibraltar', |
302 | | - 'gr' => 'Greece', |
303 | | - 'gl' => 'Greenland', |
304 | | - 'gd' => 'Grenada', |
305 | | - 'gp' => 'Guadeloupe', |
306 | | - 'gu' => 'Guam', |
307 | | - 'gt' => 'Guatemala', |
308 | | - 'gn' => 'Guinea', |
309 | | - 'gw' => 'Guinea-Bissau', |
310 | | - 'gy' => 'Guyana', |
311 | | - 'ht' => 'Haiti', |
312 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
313 | | - 'va' => 'Holy See (Vatican City)', |
314 | | - 'hn' => 'Honduras', |
315 | | - 'hu' => 'Hungary', |
316 | | - 'is' => 'Iceland', |
317 | | - 'in' => 'India', |
318 | | - 'id' => 'Indonesia', |
319 | | - 'ir' => 'Iran, Islamic Republic of', |
320 | | - 'iq' => 'Iraq', |
321 | | - 'ie' => 'Ireland', |
322 | | - 'il' => 'Israel', |
323 | | - 'it' => 'Italy', |
324 | | - 'jm' => 'Jamaica', |
325 | | - 'jp' => 'Japan', |
326 | | - 'jo' => 'Jordan', |
327 | | - 'kz' => 'Kazakhstan', |
328 | | - 'ke' => 'Kenya', |
329 | | - 'ki' => 'Kiribati', |
330 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
331 | | - 'kr' => 'Republic of Korea', |
332 | | - 'kw' => 'Kuwait', |
333 | | - 'kg' => 'Kyrgyzstan', |
334 | | - 'la' => 'Lao People\'s Democratic Republic', |
335 | | - 'lv' => 'Latvia', |
336 | | - 'lb' => 'Lebanon', |
337 | | - 'ls' => 'Lesotho', |
338 | | - 'lr' => 'Liberia', |
339 | | - 'ly' => 'Libyan Arab Jamahiriya', |
340 | | - 'li' => 'Liechtenstein', |
341 | | - 'lt' => 'Lithuania', |
342 | | - 'lu' => 'Luxembourg', |
343 | | - 'mo' => 'Macao', |
344 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
345 | | - 'mg' => 'Madagascar', |
346 | | - 'mw' => 'Malawi', |
347 | | - 'my' => 'Malaysia', |
348 | | - 'mv' => 'Maldives', |
349 | | - 'ml' => 'Mali', |
350 | | - 'mt' => 'Malta', |
351 | | - 'mh' => 'Marshall Islands', |
352 | | - 'mq' => 'Martinique', |
353 | | - 'mr' => 'Mauritania', |
354 | | - 'mu' => 'Mauritius', |
355 | | - 'yt' => 'Mayotte', |
356 | | - 'mx' => 'Mexico', |
357 | | - 'fm' => 'Micronesia, Federated States of', |
358 | | - 'md' => 'Moldova, Republic of', |
359 | | - 'mc' => 'Monaco SAR', |
360 | | - 'mn' => 'Mongolia', |
| 216 | + 'af' => 'Afghanistan', |
| 217 | + 'ax' => 'Aland Islands', |
| 218 | + 'al' => 'Albania', |
| 219 | + 'dz' => 'Algeria', |
| 220 | + 'as' => 'American Samoa', |
| 221 | + 'ad' => 'Andorra', |
| 222 | + 'ao' => 'Angola', |
| 223 | + 'ai' => 'Anguilla', |
| 224 | + 'aq' => 'Antarctica', |
| 225 | + 'ag' => 'Antigua and Barbuda', |
| 226 | + 'ar' => 'Argentina', |
| 227 | + 'am' => 'Armenia', |
| 228 | + 'aw' => 'Aruba', |
| 229 | + 'au' => 'Australia', |
| 230 | + 'at' => 'Austria', |
| 231 | + 'az' => 'Azerbaijan', |
| 232 | + 'bs' => 'Bahamas', |
| 233 | + 'bh' => 'Bahrain', |
| 234 | + 'bd' => 'Bangladesh', |
| 235 | + 'bb' => 'Barbados', |
| 236 | + 'by' => 'Belarus', |
| 237 | + 'be' => 'Belgium', |
| 238 | + 'bz' => 'Belize', |
| 239 | + 'bj' => 'Benin', |
| 240 | + 'bm' => 'Bermuda', |
| 241 | + 'bt' => 'Bhutan', |
| 242 | + 'bo' => 'Bolivia', |
| 243 | + 'ba' => 'Bosnia and Herzegovina', |
| 244 | + 'bw' => 'Botswana', |
| 245 | + 'bv' => 'Bouvet Island', |
| 246 | + 'br' => 'Brazil', |
| 247 | + 'io' => 'British Indian Ocean Territory', |
| 248 | + 'bn' => 'Brunei Darussalam', |
| 249 | + 'bg' => 'Bulgaria', |
| 250 | + 'bf' => 'Burkina Faso', |
| 251 | + 'mm' => 'Burma (Myanmar)', |
| 252 | + 'bi' => 'Burundi', |
| 253 | + 'kh' => 'Cambodia', |
| 254 | + 'cm' => 'Cameroon', |
| 255 | + 'ca' => 'Canada', |
| 256 | + 'cv' => 'Cape Verde', |
| 257 | + 'ky' => 'Cayman Islands', |
| 258 | + 'cf' => 'Central African Republic', |
| 259 | + 'td' => 'Chad', |
| 260 | + 'cl' => 'Chile', |
| 261 | + 'hk' => 'Hong Kong SAR', |
| 262 | + 'cn' => 'People\'s Republic of China', |
| 263 | + 'tw' => 'Republic of China (Taiwan)', |
| 264 | + 'cx' => 'Christmas Island', |
| 265 | + 'cc' => 'Cocos (keeling) Islands', |
| 266 | + 'co' => 'Colombia', |
| 267 | + 'km' => 'Comoros', |
| 268 | + 'cg' => 'Congo', |
| 269 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 270 | + 'ck' => 'Cook Islands', |
| 271 | + 'cr' => 'Costa Rica', |
| 272 | + 'ci' => 'Cote D\'ivoire', |
| 273 | + 'hr' => 'Croatia', |
| 274 | + 'cu' => 'Cuba', |
| 275 | + 'cy' => 'Cyprus', |
| 276 | + 'cz' => 'Czech Republic', |
| 277 | + 'dk' => 'Denmark', |
| 278 | + 'dj' => 'Djibouti', |
| 279 | + 'dm' => 'Dominica', |
| 280 | + 'do' => 'Dominican Republic', |
| 281 | + 'ec' => 'Ecuador', |
| 282 | + 'eg' => 'Egypt', |
| 283 | + 'sv' => 'El Salvador', |
| 284 | + 'gq' => 'Equatorial Guinea', |
| 285 | + 'er' => 'Eritrea', |
| 286 | + 'ee' => 'Estonia', |
| 287 | + 'et' => 'Ethiopia', |
| 288 | + 'fk' => 'Falkland Islands (malvinas)', |
| 289 | + 'fo' => 'Faroe Islands', |
| 290 | + 'fj' => 'Fiji', |
| 291 | + 'fi' => 'Finland', |
| 292 | + 'fr' => 'France', |
| 293 | + 'gf' => 'French Guiana', |
| 294 | + 'pf' => 'French Polynesia', |
| 295 | + 'tf' => 'French Southern Territories', |
| 296 | + 'ga' => 'Gabon', |
| 297 | + 'gm' => 'Gambia', |
| 298 | + 'ge' => 'Georgia', |
| 299 | + 'de' => 'Germany', |
| 300 | + 'gh' => 'Ghana', |
| 301 | + 'gi' => 'Gibraltar', |
| 302 | + 'gr' => 'Greece', |
| 303 | + 'gl' => 'Greenland', |
| 304 | + 'gd' => 'Grenada', |
| 305 | + 'gp' => 'Guadeloupe', |
| 306 | + 'gu' => 'Guam', |
| 307 | + 'gt' => 'Guatemala', |
| 308 | + 'gn' => 'Guinea', |
| 309 | + 'gw' => 'Guinea-Bissau', |
| 310 | + 'gy' => 'Guyana', |
| 311 | + 'ht' => 'Haiti', |
| 312 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 313 | + 'va' => 'Holy See (Vatican City)', |
| 314 | + 'hn' => 'Honduras', |
| 315 | + 'hu' => 'Hungary', |
| 316 | + 'is' => 'Iceland', |
| 317 | + 'in' => 'India', |
| 318 | + 'id' => 'Indonesia', |
| 319 | + 'ir' => 'Iran, Islamic Republic of', |
| 320 | + 'iq' => 'Iraq', |
| 321 | + 'ie' => 'Ireland', |
| 322 | + 'il' => 'Israel', |
| 323 | + 'it' => 'Italy', |
| 324 | + 'jm' => 'Jamaica', |
| 325 | + 'jp' => 'Japan', |
| 326 | + 'jo' => 'Jordan', |
| 327 | + 'kz' => 'Kazakhstan', |
| 328 | + 'ke' => 'Kenya', |
| 329 | + 'ki' => 'Kiribati', |
| 330 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 331 | + 'kr' => 'Republic of Korea', |
| 332 | + 'kw' => 'Kuwait', |
| 333 | + 'kg' => 'Kyrgyzstan', |
| 334 | + 'la' => 'Lao People\'s Democratic Republic', |
| 335 | + 'lv' => 'Latvia', |
| 336 | + 'lb' => 'Lebanon', |
| 337 | + 'ls' => 'Lesotho', |
| 338 | + 'lr' => 'Liberia', |
| 339 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 340 | + 'li' => 'Liechtenstein', |
| 341 | + 'lt' => 'Lithuania', |
| 342 | + 'lu' => 'Luxembourg', |
| 343 | + 'mo' => 'Macao', |
| 344 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 345 | + 'mg' => 'Madagascar', |
| 346 | + 'mw' => 'Malawi', |
| 347 | + 'my' => 'Malaysia', |
| 348 | + 'mv' => 'Maldives', |
| 349 | + 'ml' => 'Mali', |
| 350 | + 'mt' => 'Malta', |
| 351 | + 'mh' => 'Marshall Islands', |
| 352 | + 'mq' => 'Martinique', |
| 353 | + 'mr' => 'Mauritania', |
| 354 | + 'mu' => 'Mauritius', |
| 355 | + 'yt' => 'Mayotte', |
| 356 | + 'mx' => 'Mexico', |
| 357 | + 'fm' => 'Micronesia, Federated States of', |
| 358 | + 'md' => 'Moldova, Republic of', |
| 359 | + 'mc' => 'Monaco SAR', |
| 360 | + 'mn' => 'Mongolia', |
361 | 361 | 'me' => 'Montenegro', |
362 | | - 'ms' => 'Montserrat', |
363 | | - 'ma' => 'Morocco', |
364 | | - 'mz' => 'Mozambique', |
365 | | - 'na' => 'Namibia', |
366 | | - 'nr' => 'Nauru', |
367 | | - 'np' => 'Nepal', |
368 | | - 'nl' => 'Netherlands', |
369 | | - 'an' => 'Netherlands Antilles', |
370 | | - 'nc' => 'New Caledonia', |
371 | | - 'nz' => 'New Zealand', |
372 | | - 'ni' => 'Nicaragua', |
373 | | - 'ne' => 'Niger', |
374 | | - 'ng' => 'Nigeria', |
375 | | - 'nu' => 'Niue', |
376 | | - 'nf' => 'Norfolk Island', |
377 | | - 'mp' => 'Northern Mariana Islands', |
378 | | - 'no' => 'Norway', |
379 | | - 'om' => 'Oman', |
380 | | - 'pk' => 'Pakistan', |
381 | | - 'pw' => 'Palau', |
382 | | - 'ps' => 'Palestinian Territory', |
383 | | - 'pa' => 'Panama', |
384 | | - 'pg' => 'Papua New Guinea', |
385 | | - 'py' => 'Paraguay', |
386 | | - 'pe' => 'Peru', |
387 | | - 'ph' => 'Philippines', |
388 | | - 'pn' => 'Pitcairn', |
389 | | - 'pl' => 'Poland', |
390 | | - 'pt' => 'Portugal', |
391 | | - 'pr' => 'Puerto Rico', |
392 | | - 'qa' => 'Qatar', |
393 | | - 're' => 'Reunion', |
394 | | - 'ro' => 'Romania', |
395 | | - 'ru' => 'Russian Federation', |
396 | | - 'rw' => 'Rwanda', |
397 | | - 'sh' => 'Saint Helena', |
398 | | - 'kn' => 'Saint Kitts and Nevis', |
399 | | - 'lc' => 'Saint Lucia', |
400 | | - 'pm' => 'Saint Pierre and Miquelon', |
401 | | - 'vc' => 'Saint Vincent and the Grenadines', |
402 | | - 'ws' => 'Samoa', |
403 | | - 'sm' => 'San Marino', |
404 | | - 'st' => 'Sao Tome and Principe', |
405 | | - 'sa' => 'Saudi Arabia', |
406 | | - 'sn' => 'Senegal', |
407 | | - 'rs' => 'Serbia', |
408 | | - 'sc' => 'Seychelles', |
409 | | - 'sl' => 'Sierra Leone', |
410 | | - 'sg' => 'Singapore', |
411 | | - 'sk' => 'Slovakia', |
412 | | - 'si' => 'Slovenia', |
413 | | - 'sb' => 'Solomon Islands', |
414 | | - 'so' => 'Somalia', |
415 | | - 'za' => 'South Africa', |
416 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
417 | | - 'es' => 'Spain', |
418 | | - 'lk' => 'Sri Lanka', |
419 | | - 'sd' => 'Sudan', |
420 | | - 'sr' => 'Suriname', |
421 | | - 'sj' => 'Svalbard and Jan Mayen', |
422 | | - 'sz' => 'Swaziland', |
423 | | - 'se' => 'Sweden', |
424 | | - 'ch' => 'Switzerland', |
425 | | - 'sy' => 'Syrian Arab Republic', |
426 | | - 'tj' => 'Tajikistan', |
427 | | - 'tz' => 'Tanzania, United Republic of', |
428 | | - 'th' => 'Thailand', |
429 | | - 'tl' => 'Timor-leste', |
430 | | - 'tg' => 'Togo', |
431 | | - 'tk' => 'Tokelau', |
432 | | - 'to' => 'Tonga', |
433 | | - 'tt' => 'Trinidad and Tobago', |
434 | | - 'tn' => 'Tunisia', |
435 | | - 'tr' => 'Turkey', |
436 | | - 'tm' => 'Turkmenistan', |
437 | | - 'tc' => 'Turks and Caicos Islands', |
438 | | - 'tv' => 'Tuvalu', |
439 | | - 'ug' => 'Uganda', |
440 | | - 'ua' => 'Ukraine', |
441 | | - 'ae' => 'United Arab Emirates', |
442 | | - 'gb' => 'United Kingdom', |
443 | | - 'us' => 'United States', |
444 | | - 'um' => 'United States Minor Outlying Islands', |
445 | | - 'uy' => 'Uruguay', |
446 | | - 'uz' => 'Uzbekistan', |
447 | | - 'vu' => 'Vanuatu', |
448 | | - 've' => 'Venezuela', |
449 | | - 'vn' => 'Viet Nam', |
450 | | - 'vg' => 'Virgin Islands, British', |
451 | | - 'vi' => 'Virgin Islands, U.S.', |
452 | | - 'wf' => 'Wallis and Futuna', |
453 | | - 'eh' => 'Western Sahara', |
454 | | - 'ye' => 'Yemen', |
455 | | - 'zm' => 'Zambia', |
456 | | - 'zw' => 'Zimbabwe' |
| 362 | + 'ms' => 'Montserrat', |
| 363 | + 'ma' => 'Morocco', |
| 364 | + 'mz' => 'Mozambique', |
| 365 | + 'na' => 'Namibia', |
| 366 | + 'nr' => 'Nauru', |
| 367 | + 'np' => 'Nepal', |
| 368 | + 'nl' => 'Netherlands', |
| 369 | + 'an' => 'Netherlands Antilles', |
| 370 | + 'nc' => 'New Caledonia', |
| 371 | + 'nz' => 'New Zealand', |
| 372 | + 'ni' => 'Nicaragua', |
| 373 | + 'ne' => 'Niger', |
| 374 | + 'ng' => 'Nigeria', |
| 375 | + 'nu' => 'Niue', |
| 376 | + 'nf' => 'Norfolk Island', |
| 377 | + 'mp' => 'Northern Mariana Islands', |
| 378 | + 'no' => 'Norway', |
| 379 | + 'om' => 'Oman', |
| 380 | + 'pk' => 'Pakistan', |
| 381 | + 'pw' => 'Palau', |
| 382 | + 'ps' => 'Palestinian Territory', |
| 383 | + 'pa' => 'Panama', |
| 384 | + 'pg' => 'Papua New Guinea', |
| 385 | + 'py' => 'Paraguay', |
| 386 | + 'pe' => 'Peru', |
| 387 | + 'ph' => 'Philippines', |
| 388 | + 'pn' => 'Pitcairn', |
| 389 | + 'pl' => 'Poland', |
| 390 | + 'pt' => 'Portugal', |
| 391 | + 'pr' => 'Puerto Rico', |
| 392 | + 'qa' => 'Qatar', |
| 393 | + 're' => 'Reunion', |
| 394 | + 'ro' => 'Romania', |
| 395 | + 'ru' => 'Russian Federation', |
| 396 | + 'rw' => 'Rwanda', |
| 397 | + 'sh' => 'Saint Helena', |
| 398 | + 'kn' => 'Saint Kitts and Nevis', |
| 399 | + 'lc' => 'Saint Lucia', |
| 400 | + 'pm' => 'Saint Pierre and Miquelon', |
| 401 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 402 | + 'ws' => 'Samoa', |
| 403 | + 'sm' => 'San Marino', |
| 404 | + 'st' => 'Sao Tome and Principe', |
| 405 | + 'sa' => 'Saudi Arabia', |
| 406 | + 'sn' => 'Senegal', |
| 407 | + 'rs' => 'Serbia', |
| 408 | + 'sc' => 'Seychelles', |
| 409 | + 'sl' => 'Sierra Leone', |
| 410 | + 'sg' => 'Singapore', |
| 411 | + 'sk' => 'Slovakia', |
| 412 | + 'si' => 'Slovenia', |
| 413 | + 'sb' => 'Solomon Islands', |
| 414 | + 'so' => 'Somalia', |
| 415 | + 'za' => 'South Africa', |
| 416 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 417 | + 'es' => 'Spain', |
| 418 | + 'lk' => 'Sri Lanka', |
| 419 | + 'sd' => 'Sudan', |
| 420 | + 'sr' => 'Suriname', |
| 421 | + 'sj' => 'Svalbard and Jan Mayen', |
| 422 | + 'sz' => 'Swaziland', |
| 423 | + 'se' => 'Sweden', |
| 424 | + 'ch' => 'Switzerland', |
| 425 | + 'sy' => 'Syrian Arab Republic', |
| 426 | + 'tj' => 'Tajikistan', |
| 427 | + 'tz' => 'Tanzania, United Republic of', |
| 428 | + 'th' => 'Thailand', |
| 429 | + 'tl' => 'Timor-leste', |
| 430 | + 'tg' => 'Togo', |
| 431 | + 'tk' => 'Tokelau', |
| 432 | + 'to' => 'Tonga', |
| 433 | + 'tt' => 'Trinidad and Tobago', |
| 434 | + 'tn' => 'Tunisia', |
| 435 | + 'tr' => 'Turkey', |
| 436 | + 'tm' => 'Turkmenistan', |
| 437 | + 'tc' => 'Turks and Caicos Islands', |
| 438 | + 'tv' => 'Tuvalu', |
| 439 | + 'ug' => 'Uganda', |
| 440 | + 'ua' => 'Ukraine', |
| 441 | + 'ae' => 'United Arab Emirates', |
| 442 | + 'gb' => 'United Kingdom', |
| 443 | + 'us' => 'United States', |
| 444 | + 'um' => 'United States Minor Outlying Islands', |
| 445 | + 'uy' => 'Uruguay', |
| 446 | + 'uz' => 'Uzbekistan', |
| 447 | + 'vu' => 'Vanuatu', |
| 448 | + 've' => 'Venezuela', |
| 449 | + 'vn' => 'Viet Nam', |
| 450 | + 'vg' => 'Virgin Islands, British', |
| 451 | + 'vi' => 'Virgin Islands, U.S.', |
| 452 | + 'wf' => 'Wallis and Futuna', |
| 453 | + 'eh' => 'Western Sahara', |
| 454 | + 'ye' => 'Yemen', |
| 455 | + 'zm' => 'Zambia', |
| 456 | + 'zw' => 'Zimbabwe' |
457 | 457 | ); |
458 | 458 | |
Index: trunk/wikimania/wmreg/includes/UserSession.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | |
18 | 18 | function UserSession() |
19 | 19 | { |
20 | | - $this->handle = ''; |
| 20 | + $this->handle = ''; |
21 | 21 | } |
22 | 22 | |
23 | 23 | function Start( $custom_session_id = '' ) |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | |
35 | 35 | /* Cookie Session ID as 2nd order */ |
36 | 36 | if ( !$custom_session_id ) |
37 | | - { $custom_session_id = $_COOKIE[TC_COOKIE_SESSION_NAME]; } |
| 37 | + { $custom_session_id = $_COOKIE[TC_COOKIE_SESSION_NAME]; } |
38 | 38 | |
39 | 39 | /* First, check for vaild Session ID */ |
40 | 40 | if ( preg_match( '/[^0-9A-Z]/i', $custom_session_id ) ) return false; |
— | — | @@ -89,7 +89,7 @@ |
90 | 90 | |
91 | 91 | if ( isset( $_COOKIE[TC_COOKIE_SESSION_NAME] ) ) |
92 | 92 | { |
93 | | - setcookie( TC_COOKIE_SESSION_NAME, '', time() -42000, '/' ); |
| 93 | + setcookie( TC_COOKIE_SESSION_NAME, '', time() -42000, '/' ); |
94 | 94 | } |
95 | 95 | |
96 | 96 | session_destroy(); |
Index: trunk/wikimania/wmreg/includes/mail.php |
— | — | @@ -6,7 +6,7 @@ |
7 | 7 | // this is partly over-ridden by Gmail SMTP |
8 | 8 | $from = "Wikimania 2011 Registration <wikimania-registration@wikimedia.org>"; |
9 | 9 | $headers = array ( 'From' => $from, |
10 | | - 'To' => $to, |
| 10 | + 'To' => $to, |
11 | 11 | 'Subject' => $subject, |
12 | 12 | 'MIME-Version' => '1.0', |
13 | 13 | 'Content-type' => 'text/html; charset=utf-8', |
Index: trunk/wikimania/wmreg/includes/language_ar.php |
— | — | @@ -209,246 +209,246 @@ |
210 | 210 | ); |
211 | 211 | |
212 | 212 | $lang_countries = array( |
213 | | - 'af' => 'أفغانستان', |
214 | | - 'ax' => 'جزر أولان', |
215 | | - 'al' => 'ألبانيا', |
216 | | - 'dz' => 'الجمهورية الجزائرية', |
217 | | - 'as' => 'ساموا الأمريكية', |
218 | | - 'ad' => 'أندورا', |
219 | | - 'ao' => 'أنغولا', |
220 | | - 'ai' => 'جزيرة أنغويلا', |
221 | | - 'aq' => 'أنتاركتيكا', |
222 | | - 'ag' => 'أنتيغوا وبربودا', |
223 | | - 'ar' => 'الأرجنتين', |
224 | | - 'am' => 'أرمينيا', |
225 | | - 'aw' => 'آروبا', |
226 | | - 'au' => 'أوستراليا', |
227 | | - 'at' => 'النمسا', |
228 | | - 'az' => 'أذربيجان', |
229 | | - 'bs' => 'بهاماس', |
230 | | - 'bh' => 'مملكة البحرين', |
231 | | - 'bd' => 'بنغلاديش', |
232 | | - 'bb' => 'بربدوس', |
233 | | - 'by' => 'بلاروس', |
234 | | - 'be' => 'بلجيكا', |
235 | | - 'bz' => 'بليز', |
236 | | - 'bj' => 'بنين', |
237 | | - 'bm' => 'برمودا', |
238 | | - 'bt' => 'بوتان', |
239 | | - 'bo' => 'بوليفيا', |
240 | | - 'ba' => 'البوسنة والهرسك', |
241 | | - 'bw' => 'بوتسوانا', |
242 | | - 'bv' => 'جزيرة بوفيه', |
243 | | - 'br' => 'البرازيل', |
244 | | - 'io' => 'إقليم المحيط الهندي البريطاني', |
245 | | - 'bn' => 'بروناي دار السلام', |
246 | | - 'bg' => 'بلغاريا', |
247 | | - 'bf' => 'بوركينا فاسو', |
248 | | - 'mm' => 'بورما (ميانمار)', |
249 | | - 'bi' => 'بوروندي', |
250 | | - 'kh' => 'كمبوديا', |
251 | | - 'cm' => 'الكاميرون', |
252 | | - 'ca' => 'كندا', |
253 | | - 'cv' => 'الرأس الأخضر', |
254 | | - 'ky' => 'جزر كايمان', |
255 | | - 'cf' => 'جمهورية إفريقيا الوسطى', |
256 | | - 'td' => 'تشاد', |
257 | | - 'cl' => 'تشيلي', |
258 | | - 'hk' => 'هونغ كونغ (منطقة إدارية خاصة)', |
259 | | - 'cn' => 'جمهورية الصين الشعبية', |
260 | | - 'tw' => 'جمهورية الصين (تايوان)', |
261 | | - 'cx' => 'جزيرة عيد الميلاد', |
262 | | - 'cc' => 'جزر كوكوس (كيلينغ)', |
263 | | - 'co' => 'كولومبيا', |
264 | | - 'km' => 'جزر القمر', |
265 | | - 'cg' => 'جمهورية الكونغو', |
266 | | - 'cd' => 'جمهورية الكونغو الديمقراطية', |
267 | | - 'ck' => 'جزر كوك', |
268 | | - 'cr' => 'كوستا ريكا', |
269 | | - 'ci' => 'كوت ديفوار (ساحل العاج)', |
270 | | - 'hr' => 'كرواتيا', |
271 | | - 'cu' => 'كوبا', |
272 | | - 'cy' => 'قبرص', |
273 | | - 'cz' => 'الجمهورية التشيكية', |
274 | | - 'dk' => 'دينمارك', |
275 | | - 'dj' => 'جيبوتي', |
276 | | - 'dm' => 'دومينيكا', |
277 | | - 'do' => 'الجمهورية الدومينيكية', |
278 | | - 'ec' => 'إكوادور', |
279 | | - 'eg' => 'جمهورية مصر العربية', |
280 | | - 'sv' => 'السلفادور', |
281 | | - 'gq' => 'غينيا الاستوائية', |
282 | | - 'er' => 'أريتريا', |
283 | | - 'ee' => 'إستونيا', |
284 | | - 'et' => 'إثيوبيا', |
285 | | - 'fk' => 'جزر فوكلند (مالفيناس)', |
286 | | - 'fo' => 'جزر فارو', |
287 | | - 'fj' => 'فيجي', |
288 | | - 'fi' => 'فنلندا', |
289 | | - 'fr' => 'فرنسا', |
290 | | - 'gf' => 'غيانا الفرنسية', |
291 | | - 'pf' => 'بولينيسيا الفرنسية', |
292 | | - 'tf' => 'المقاطعات الجنوبية الفرنسية', |
293 | | - 'ga' => 'غابون', |
294 | | - 'gm' => 'غامبيا', |
295 | | - 'ge' => 'جورجيا', |
296 | | - 'de' => 'ألمانيا', |
297 | | - 'gh' => 'غانا', |
298 | | - 'gi' => 'جبل الطارق', |
299 | | - 'gr' => 'اليونان', |
300 | | - 'gl' => 'غرينلند', |
301 | | - 'gd' => 'غرينادا', |
302 | | - 'gp' => 'غواديلوب', |
303 | | - 'gu' => 'غوام', |
304 | | - 'gt' => 'غواتيمالا', |
305 | | - 'gn' => 'غينيا', |
306 | | - 'gw' => 'غينيا بيساو', |
307 | | - 'gy' => 'غيانا', |
308 | | - 'ht' => 'هايتي', |
309 | | - 'hm' => 'جزر هيرد ومكدونلد', |
310 | | - 'va' => 'الكرسي البابوي (مدينة الفاتيكان)', |
311 | | - 'hn' => 'هندوراس', |
312 | | - 'hu' => 'المجر (هنغاريا)', |
313 | | - 'is' => 'إيسلندا', |
314 | | - 'in' => 'الهند', |
315 | | - 'id' => 'إندونيسيا', |
316 | | - 'ir' => 'جمهورية إيران الإسلامية', |
317 | | - 'iq' => 'جمهورية العراق', |
318 | | - 'ie' => 'إيرلندا', |
319 | | - 'il' => 'إسرائيل', |
320 | | - 'it' => 'إيطاليا', |
321 | | - 'jm' => 'جمايكا', |
322 | | - 'jp' => 'اليابان', |
323 | | - 'jo' => 'المملكة الأردنية الهاشمية', |
324 | | - 'kz' => 'كزخستان', |
325 | | - 'ke' => 'كينيا', |
326 | | - 'ki' => 'كيريباتي', |
327 | | - 'kp' => 'جمهورية كوريا الديمقراطية الشعبية', |
328 | | - 'kr' => 'جمهورية كوريا', |
329 | | - 'kw' => 'دولة الكويت', |
330 | | - 'kg' => 'قيرغيزستان', |
331 | | - 'la' => 'جمهورية لاو الديمقراطية الشعبية', |
332 | | - 'lv' => 'لاتفيا', |
333 | | - 'lb' => 'الجمهورية اللبنانية', |
334 | | - 'ls' => 'ليسوثو', |
335 | | - 'lr' => 'ليبيريا', |
336 | | - 'ly' => 'الجماهيرية العربية الليبية', |
337 | | - 'li' => 'ليختننشتاين', |
338 | | - 'lt' => 'ليتوانيا', |
339 | | - 'lu' => 'لوكسمبورغ', |
340 | | - 'mo' => 'ماكاو', |
341 | | - 'mk' => 'مقدونيا (ج. ي. س.)', |
342 | | - 'mg' => 'مدغشقر', |
343 | | - 'mw' => 'ملاوي', |
344 | | - 'my' => 'ماليزيا', |
345 | | - 'mv' => 'المالديف', |
346 | | - 'ml' => 'مالي', |
347 | | - 'mt' => 'مالطا', |
348 | | - 'mh' => 'جزر المارشال', |
349 | | - 'mq' => 'مارتينيك', |
350 | | - 'mr' => 'الجمهورية الإسلامية الموريتانية', |
351 | | - 'mu' => 'موريتيوس', |
352 | | - 'yt' => 'مايوت', |
353 | | - 'mx' => 'المكسيك', |
354 | | - 'fm' => 'ولايات ميكرونيزيا الموحدة', |
355 | | - 'md' => 'جمهورية مولدوفا', |
356 | | - 'mc' => 'موناكو', |
357 | | - 'mn' => 'منغوليا', |
| 213 | + 'af' => 'أفغانستان', |
| 214 | + 'ax' => 'جزر أولان', |
| 215 | + 'al' => 'ألبانيا', |
| 216 | + 'dz' => 'الجمهورية الجزائرية', |
| 217 | + 'as' => 'ساموا الأمريكية', |
| 218 | + 'ad' => 'أندورا', |
| 219 | + 'ao' => 'أنغولا', |
| 220 | + 'ai' => 'جزيرة أنغويلا', |
| 221 | + 'aq' => 'أنتاركتيكا', |
| 222 | + 'ag' => 'أنتيغوا وبربودا', |
| 223 | + 'ar' => 'الأرجنتين', |
| 224 | + 'am' => 'أرمينيا', |
| 225 | + 'aw' => 'آروبا', |
| 226 | + 'au' => 'أوستراليا', |
| 227 | + 'at' => 'النمسا', |
| 228 | + 'az' => 'أذربيجان', |
| 229 | + 'bs' => 'بهاماس', |
| 230 | + 'bh' => 'مملكة البحرين', |
| 231 | + 'bd' => 'بنغلاديش', |
| 232 | + 'bb' => 'بربدوس', |
| 233 | + 'by' => 'بلاروس', |
| 234 | + 'be' => 'بلجيكا', |
| 235 | + 'bz' => 'بليز', |
| 236 | + 'bj' => 'بنين', |
| 237 | + 'bm' => 'برمودا', |
| 238 | + 'bt' => 'بوتان', |
| 239 | + 'bo' => 'بوليفيا', |
| 240 | + 'ba' => 'البوسنة والهرسك', |
| 241 | + 'bw' => 'بوتسوانا', |
| 242 | + 'bv' => 'جزيرة بوفيه', |
| 243 | + 'br' => 'البرازيل', |
| 244 | + 'io' => 'إقليم المحيط الهندي البريطاني', |
| 245 | + 'bn' => 'بروناي دار السلام', |
| 246 | + 'bg' => 'بلغاريا', |
| 247 | + 'bf' => 'بوركينا فاسو', |
| 248 | + 'mm' => 'بورما (ميانمار)', |
| 249 | + 'bi' => 'بوروندي', |
| 250 | + 'kh' => 'كمبوديا', |
| 251 | + 'cm' => 'الكاميرون', |
| 252 | + 'ca' => 'كندا', |
| 253 | + 'cv' => 'الرأس الأخضر', |
| 254 | + 'ky' => 'جزر كايمان', |
| 255 | + 'cf' => 'جمهورية إفريقيا الوسطى', |
| 256 | + 'td' => 'تشاد', |
| 257 | + 'cl' => 'تشيلي', |
| 258 | + 'hk' => 'هونغ كونغ (منطقة إدارية خاصة)', |
| 259 | + 'cn' => 'جمهورية الصين الشعبية', |
| 260 | + 'tw' => 'جمهورية الصين (تايوان)', |
| 261 | + 'cx' => 'جزيرة عيد الميلاد', |
| 262 | + 'cc' => 'جزر كوكوس (كيلينغ)', |
| 263 | + 'co' => 'كولومبيا', |
| 264 | + 'km' => 'جزر القمر', |
| 265 | + 'cg' => 'جمهورية الكونغو', |
| 266 | + 'cd' => 'جمهورية الكونغو الديمقراطية', |
| 267 | + 'ck' => 'جزر كوك', |
| 268 | + 'cr' => 'كوستا ريكا', |
| 269 | + 'ci' => 'كوت ديفوار (ساحل العاج)', |
| 270 | + 'hr' => 'كرواتيا', |
| 271 | + 'cu' => 'كوبا', |
| 272 | + 'cy' => 'قبرص', |
| 273 | + 'cz' => 'الجمهورية التشيكية', |
| 274 | + 'dk' => 'دينمارك', |
| 275 | + 'dj' => 'جيبوتي', |
| 276 | + 'dm' => 'دومينيكا', |
| 277 | + 'do' => 'الجمهورية الدومينيكية', |
| 278 | + 'ec' => 'إكوادور', |
| 279 | + 'eg' => 'جمهورية مصر العربية', |
| 280 | + 'sv' => 'السلفادور', |
| 281 | + 'gq' => 'غينيا الاستوائية', |
| 282 | + 'er' => 'أريتريا', |
| 283 | + 'ee' => 'إستونيا', |
| 284 | + 'et' => 'إثيوبيا', |
| 285 | + 'fk' => 'جزر فوكلند (مالفيناس)', |
| 286 | + 'fo' => 'جزر فارو', |
| 287 | + 'fj' => 'فيجي', |
| 288 | + 'fi' => 'فنلندا', |
| 289 | + 'fr' => 'فرنسا', |
| 290 | + 'gf' => 'غيانا الفرنسية', |
| 291 | + 'pf' => 'بولينيسيا الفرنسية', |
| 292 | + 'tf' => 'المقاطعات الجنوبية الفرنسية', |
| 293 | + 'ga' => 'غابون', |
| 294 | + 'gm' => 'غامبيا', |
| 295 | + 'ge' => 'جورجيا', |
| 296 | + 'de' => 'ألمانيا', |
| 297 | + 'gh' => 'غانا', |
| 298 | + 'gi' => 'جبل الطارق', |
| 299 | + 'gr' => 'اليونان', |
| 300 | + 'gl' => 'غرينلند', |
| 301 | + 'gd' => 'غرينادا', |
| 302 | + 'gp' => 'غواديلوب', |
| 303 | + 'gu' => 'غوام', |
| 304 | + 'gt' => 'غواتيمالا', |
| 305 | + 'gn' => 'غينيا', |
| 306 | + 'gw' => 'غينيا بيساو', |
| 307 | + 'gy' => 'غيانا', |
| 308 | + 'ht' => 'هايتي', |
| 309 | + 'hm' => 'جزر هيرد ومكدونلد', |
| 310 | + 'va' => 'الكرسي البابوي (مدينة الفاتيكان)', |
| 311 | + 'hn' => 'هندوراس', |
| 312 | + 'hu' => 'المجر (هنغاريا)', |
| 313 | + 'is' => 'إيسلندا', |
| 314 | + 'in' => 'الهند', |
| 315 | + 'id' => 'إندونيسيا', |
| 316 | + 'ir' => 'جمهورية إيران الإسلامية', |
| 317 | + 'iq' => 'جمهورية العراق', |
| 318 | + 'ie' => 'إيرلندا', |
| 319 | + 'il' => 'إسرائيل', |
| 320 | + 'it' => 'إيطاليا', |
| 321 | + 'jm' => 'جمايكا', |
| 322 | + 'jp' => 'اليابان', |
| 323 | + 'jo' => 'المملكة الأردنية الهاشمية', |
| 324 | + 'kz' => 'كزخستان', |
| 325 | + 'ke' => 'كينيا', |
| 326 | + 'ki' => 'كيريباتي', |
| 327 | + 'kp' => 'جمهورية كوريا الديمقراطية الشعبية', |
| 328 | + 'kr' => 'جمهورية كوريا', |
| 329 | + 'kw' => 'دولة الكويت', |
| 330 | + 'kg' => 'قيرغيزستان', |
| 331 | + 'la' => 'جمهورية لاو الديمقراطية الشعبية', |
| 332 | + 'lv' => 'لاتفيا', |
| 333 | + 'lb' => 'الجمهورية اللبنانية', |
| 334 | + 'ls' => 'ليسوثو', |
| 335 | + 'lr' => 'ليبيريا', |
| 336 | + 'ly' => 'الجماهيرية العربية الليبية', |
| 337 | + 'li' => 'ليختننشتاين', |
| 338 | + 'lt' => 'ليتوانيا', |
| 339 | + 'lu' => 'لوكسمبورغ', |
| 340 | + 'mo' => 'ماكاو', |
| 341 | + 'mk' => 'مقدونيا (ج. ي. س.)', |
| 342 | + 'mg' => 'مدغشقر', |
| 343 | + 'mw' => 'ملاوي', |
| 344 | + 'my' => 'ماليزيا', |
| 345 | + 'mv' => 'المالديف', |
| 346 | + 'ml' => 'مالي', |
| 347 | + 'mt' => 'مالطا', |
| 348 | + 'mh' => 'جزر المارشال', |
| 349 | + 'mq' => 'مارتينيك', |
| 350 | + 'mr' => 'الجمهورية الإسلامية الموريتانية', |
| 351 | + 'mu' => 'موريتيوس', |
| 352 | + 'yt' => 'مايوت', |
| 353 | + 'mx' => 'المكسيك', |
| 354 | + 'fm' => 'ولايات ميكرونيزيا الموحدة', |
| 355 | + 'md' => 'جمهورية مولدوفا', |
| 356 | + 'mc' => 'موناكو', |
| 357 | + 'mn' => 'منغوليا', |
358 | 358 | 'me' => 'الجبل الأسود', |
359 | | - 'ms' => 'مونتسيرات', |
360 | | - 'ma' => 'المملكة المغربية', |
361 | | - 'mz' => 'موزامبيك', |
362 | | - 'na' => 'ناميبيا', |
363 | | - 'nr' => 'ناورو', |
364 | | - 'np' => 'النيبال', |
365 | | - 'nl' => 'هولندا', |
366 | | - 'an' => 'جزر الأنتيل الهولندية', |
367 | | - 'nc' => 'كاليدونيا الجديدة', |
368 | | - 'nz' => 'نيوزيلندا', |
369 | | - 'ni' => 'نيكاراغوا', |
370 | | - 'ne' => 'النجير', |
371 | | - 'ng' => 'نيجيريا', |
372 | | - 'nu' => 'نيو', |
373 | | - 'nf' => 'جزر نورفوك', |
374 | | - 'mp' => 'جزر ماريانا الشمالية', |
375 | | - 'no' => 'النرويج', |
376 | | - 'om' => 'سلطنة عمان', |
377 | | - 'pk' => 'باكستان', |
378 | | - 'pw' => 'بلاو', |
379 | | - 'ps' => 'الأراضي الفلسطينية', |
380 | | - 'pa' => 'باناما', |
381 | | - 'pg' => 'بابوا نيو غينيا', |
382 | | - 'py' => 'باراغواي', |
383 | | - 'pe' => 'بيرو', |
384 | | - 'ph' => 'الفيلبين', |
385 | | - 'pn' => 'بيتكرن', |
386 | | - 'pl' => 'بولندا', |
387 | | - 'pt' => 'البرتغال', |
388 | | - 'pr' => 'بورتوريكو', |
389 | | - 'qa' => 'دولة القطر', |
390 | | - 're' => 'ريونيون', |
391 | | - 'ro' => 'رومانيا', |
392 | | - 'ru' => 'الفيديرالية الروسية', |
393 | | - 'rw' => 'رواندا', |
394 | | - 'sh' => 'سانت هيلينا', |
395 | | - 'kn' => 'سانت كتس نيفيس', |
396 | | - 'lc' => 'سانت لوسيا', |
397 | | - 'pm' => 'سانت بيير وميكولون', |
398 | | - 'vc' => 'سانت فنسنت وغرنادين', |
399 | | - 'ws' => 'ساموا', |
400 | | - 'sm' => 'سان مارينو', |
401 | | - 'st' => 'ساو تومي وبرينسيبي', |
402 | | - 'sa' => 'المملكة العربية السعودية', |
403 | | - 'sn' => 'السنغال', |
404 | | - 'rs' => 'صربيا', |
405 | | - 'sc' => 'سيشيل', |
406 | | - 'sl' => 'سيراليون', |
407 | | - 'sg' => 'سنغافورة', |
408 | | - 'sk' => 'سلوفاكيا', |
409 | | - 'si' => 'سلوفينيا', |
410 | | - 'sb' => 'جزر سليمان', |
411 | | - 'so' => 'الصومال', |
412 | | - 'za' => 'جنوب إفريقيا', |
413 | | - 'gs' => 'جزر جورجيا وساندويتش الجنوبية', |
414 | | - 'es' => 'إسبانيا', |
415 | | - 'lk' => 'سري لانكا', |
416 | | - 'sd' => 'جمهورية السودان', |
417 | | - 'sr' => 'سورينام', |
418 | | - 'sj' => 'سفاربرد ويان ماين', |
419 | | - 'sz' => 'سوازيلند', |
420 | | - 'se' => 'السويد', |
421 | | - 'ch' => 'سويسرا', |
422 | | - 'sy' => 'الجمهورية العربية السورية', |
423 | | - 'tj' => 'تاجيكيستان', |
424 | | - 'tz' => 'جمهورية تنزانيا المتحدة', |
425 | | - 'th' => 'تايلاند', |
426 | | - 'tl' => 'تيمور الشرقية', |
427 | | - 'tg' => 'توغو', |
428 | | - 'tk' => 'توكلو', |
429 | | - 'to' => 'تونغا', |
430 | | - 'tt' => 'ترينيداد وتوباغو', |
431 | | - 'tn' => 'الجمهورية التونسية', |
432 | | - 'tr' => 'تركيا', |
433 | | - 'tm' => 'تركمانستان', |
434 | | - 'tc' => 'جزر تركس وكايكوس', |
435 | | - 'tv' => 'توفالو', |
436 | | - 'ug' => 'أوغندا', |
437 | | - 'ua' => 'أوكرانيا', |
438 | | - 'ae' => 'الإمارات العربية المتحدة', |
439 | | - 'gb' => 'المملكة المتحدة (بريطانيا)', |
440 | | - 'us' => 'الولايات المتحدة', |
441 | | - 'um' => 'جزر الولايات المتحدة البعيدة الصغيرة', |
442 | | - 'uy' => 'أوروغواي', |
443 | | - 'uz' => 'أوزبكستان', |
444 | | - 'vu' => 'فانواتو', |
445 | | - 've' => 'فينيزويلا', |
446 | | - 'vn' => 'فييتنام', |
447 | | - 'vg' => 'جزر العذراء البريطانية', |
448 | | - 'vi' => 'جزر العذراء، الولايات المتحدة', |
449 | | - 'wf' => 'والس وفوتونا', |
450 | | - 'eh' => 'الصحراء الغربية', |
451 | | - 'ye' => 'جمهورية اليمن', |
452 | | - 'zm' => 'زامبيا', |
453 | | - 'zw' => 'زيمبابوي' |
| 359 | + 'ms' => 'مونتسيرات', |
| 360 | + 'ma' => 'المملكة المغربية', |
| 361 | + 'mz' => 'موزامبيك', |
| 362 | + 'na' => 'ناميبيا', |
| 363 | + 'nr' => 'ناورو', |
| 364 | + 'np' => 'النيبال', |
| 365 | + 'nl' => 'هولندا', |
| 366 | + 'an' => 'جزر الأنتيل الهولندية', |
| 367 | + 'nc' => 'كاليدونيا الجديدة', |
| 368 | + 'nz' => 'نيوزيلندا', |
| 369 | + 'ni' => 'نيكاراغوا', |
| 370 | + 'ne' => 'النجير', |
| 371 | + 'ng' => 'نيجيريا', |
| 372 | + 'nu' => 'نيو', |
| 373 | + 'nf' => 'جزر نورفوك', |
| 374 | + 'mp' => 'جزر ماريانا الشمالية', |
| 375 | + 'no' => 'النرويج', |
| 376 | + 'om' => 'سلطنة عمان', |
| 377 | + 'pk' => 'باكستان', |
| 378 | + 'pw' => 'بلاو', |
| 379 | + 'ps' => 'الأراضي الفلسطينية', |
| 380 | + 'pa' => 'باناما', |
| 381 | + 'pg' => 'بابوا نيو غينيا', |
| 382 | + 'py' => 'باراغواي', |
| 383 | + 'pe' => 'بيرو', |
| 384 | + 'ph' => 'الفيلبين', |
| 385 | + 'pn' => 'بيتكرن', |
| 386 | + 'pl' => 'بولندا', |
| 387 | + 'pt' => 'البرتغال', |
| 388 | + 'pr' => 'بورتوريكو', |
| 389 | + 'qa' => 'دولة القطر', |
| 390 | + 're' => 'ريونيون', |
| 391 | + 'ro' => 'رومانيا', |
| 392 | + 'ru' => 'الفيديرالية الروسية', |
| 393 | + 'rw' => 'رواندا', |
| 394 | + 'sh' => 'سانت هيلينا', |
| 395 | + 'kn' => 'سانت كتس نيفيس', |
| 396 | + 'lc' => 'سانت لوسيا', |
| 397 | + 'pm' => 'سانت بيير وميكولون', |
| 398 | + 'vc' => 'سانت فنسنت وغرنادين', |
| 399 | + 'ws' => 'ساموا', |
| 400 | + 'sm' => 'سان مارينو', |
| 401 | + 'st' => 'ساو تومي وبرينسيبي', |
| 402 | + 'sa' => 'المملكة العربية السعودية', |
| 403 | + 'sn' => 'السنغال', |
| 404 | + 'rs' => 'صربيا', |
| 405 | + 'sc' => 'سيشيل', |
| 406 | + 'sl' => 'سيراليون', |
| 407 | + 'sg' => 'سنغافورة', |
| 408 | + 'sk' => 'سلوفاكيا', |
| 409 | + 'si' => 'سلوفينيا', |
| 410 | + 'sb' => 'جزر سليمان', |
| 411 | + 'so' => 'الصومال', |
| 412 | + 'za' => 'جنوب إفريقيا', |
| 413 | + 'gs' => 'جزر جورجيا وساندويتش الجنوبية', |
| 414 | + 'es' => 'إسبانيا', |
| 415 | + 'lk' => 'سري لانكا', |
| 416 | + 'sd' => 'جمهورية السودان', |
| 417 | + 'sr' => 'سورينام', |
| 418 | + 'sj' => 'سفاربرد ويان ماين', |
| 419 | + 'sz' => 'سوازيلند', |
| 420 | + 'se' => 'السويد', |
| 421 | + 'ch' => 'سويسرا', |
| 422 | + 'sy' => 'الجمهورية العربية السورية', |
| 423 | + 'tj' => 'تاجيكيستان', |
| 424 | + 'tz' => 'جمهورية تنزانيا المتحدة', |
| 425 | + 'th' => 'تايلاند', |
| 426 | + 'tl' => 'تيمور الشرقية', |
| 427 | + 'tg' => 'توغو', |
| 428 | + 'tk' => 'توكلو', |
| 429 | + 'to' => 'تونغا', |
| 430 | + 'tt' => 'ترينيداد وتوباغو', |
| 431 | + 'tn' => 'الجمهورية التونسية', |
| 432 | + 'tr' => 'تركيا', |
| 433 | + 'tm' => 'تركمانستان', |
| 434 | + 'tc' => 'جزر تركس وكايكوس', |
| 435 | + 'tv' => 'توفالو', |
| 436 | + 'ug' => 'أوغندا', |
| 437 | + 'ua' => 'أوكرانيا', |
| 438 | + 'ae' => 'الإمارات العربية المتحدة', |
| 439 | + 'gb' => 'المملكة المتحدة (بريطانيا)', |
| 440 | + 'us' => 'الولايات المتحدة', |
| 441 | + 'um' => 'جزر الولايات المتحدة البعيدة الصغيرة', |
| 442 | + 'uy' => 'أوروغواي', |
| 443 | + 'uz' => 'أوزبكستان', |
| 444 | + 'vu' => 'فانواتو', |
| 445 | + 've' => 'فينيزويلا', |
| 446 | + 'vn' => 'فييتنام', |
| 447 | + 'vg' => 'جزر العذراء البريطانية', |
| 448 | + 'vi' => 'جزر العذراء، الولايات المتحدة', |
| 449 | + 'wf' => 'والس وفوتونا', |
| 450 | + 'eh' => 'الصحراء الغربية', |
| 451 | + 'ye' => 'جمهورية اليمن', |
| 452 | + 'zm' => 'زامبيا', |
| 453 | + 'zw' => 'زيمبابوي' |
454 | 454 | ); |
455 | 455 | |
Index: trunk/wikimania/wmreg/includes/language_en.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | 'months' => array( NULL, 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ), |
29 | 29 | 'day' => '', |
30 | 30 | 'title2' => |
31 | | -' <p><strong>Linguistic abilities</strong></p>', |
| 31 | +' <p><strong>Linguistic abilities</strong></p>', |
32 | 32 | 'langn' => 'Mother language', |
33 | 33 | 'lang' => 'Additional languages', |
34 | 34 | 'select_lang' => 'Select the language', |
— | — | @@ -208,245 +208,245 @@ |
209 | 209 | ); |
210 | 210 | |
211 | 211 | $lang_countries = array( |
212 | | - 'af' => 'Afghanistan', |
213 | | - 'ax' => 'Aland Islands', |
214 | | - 'al' => 'Albania', |
215 | | - 'dz' => 'Algeria', |
216 | | - 'as' => 'American Samoa', |
217 | | - 'ad' => 'Andorra', |
218 | | - 'ao' => 'Angola', |
219 | | - 'ai' => 'Anguilla', |
220 | | - 'aq' => 'Antarctica', |
221 | | - 'ag' => 'Antigua and Barbuda', |
222 | | - 'ar' => 'Argentina', |
223 | | - 'am' => 'Armenia', |
224 | | - 'aw' => 'Aruba', |
225 | | - 'au' => 'Australia', |
226 | | - 'at' => 'Austria', |
227 | | - 'az' => 'Azerbaijan', |
228 | | - 'bs' => 'Bahamas', |
229 | | - 'bh' => 'Bahrain', |
230 | | - 'bd' => 'Bangladesh', |
231 | | - 'bb' => 'Barbados', |
232 | | - 'by' => 'Belarus', |
233 | | - 'be' => 'Belgium', |
234 | | - 'bz' => 'Belize', |
235 | | - 'bj' => 'Benin', |
236 | | - 'bm' => 'Bermuda', |
237 | | - 'bt' => 'Bhutan', |
238 | | - 'bo' => 'Bolivia', |
239 | | - 'ba' => 'Bosnia and Herzegovina', |
240 | | - 'bw' => 'Botswana', |
241 | | - 'bv' => 'Bouvet Island', |
242 | | - 'br' => 'Brazil', |
243 | | - 'io' => 'British Indian Ocean Territory', |
244 | | - 'bn' => 'Brunei Darussalam', |
245 | | - 'bg' => 'Bulgaria', |
246 | | - 'bf' => 'Burkina Faso', |
247 | | - 'mm' => 'Burma (Myanmar)', |
248 | | - 'bi' => 'Burundi', |
249 | | - 'kh' => 'Cambodia', |
250 | | - 'cm' => 'Cameroon', |
251 | | - 'ca' => 'Canada', |
252 | | - 'cv' => 'Cape Verde', |
253 | | - 'ky' => 'Cayman Islands', |
254 | | - 'cf' => 'Central African Republic', |
255 | | - 'td' => 'Chad', |
256 | | - 'cl' => 'Chile', |
257 | | - 'hk' => 'Hong Kong SAR', |
258 | | - 'cn' => 'People\'s Republic of China', |
259 | | - 'tw' => 'Republic of China (Taiwan)', |
260 | | - 'cx' => 'Christmas Island', |
261 | | - 'cc' => 'Cocos (keeling) Islands', |
262 | | - 'co' => 'Colombia', |
263 | | - 'km' => 'Comoros', |
264 | | - 'cg' => 'Congo', |
265 | | - 'cd' => 'Congo\, The Democratic Republic of the', |
266 | | - 'ck' => 'Cook Islands', |
267 | | - 'cr' => 'Costa Rica', |
268 | | - 'ci' => 'Cote D\'ivoire', |
269 | | - 'hr' => 'Croatia', |
270 | | - 'cu' => 'Cuba', |
271 | | - 'cy' => 'Cyprus', |
272 | | - 'cz' => 'Czech Republic', |
273 | | - 'dk' => 'Denmark', |
274 | | - 'dj' => 'Djibouti', |
275 | | - 'dm' => 'Dominica', |
276 | | - 'do' => 'Dominican Republic', |
277 | | - 'ec' => 'Ecuador', |
278 | | - 'eg' => 'Egypt', |
279 | | - 'sv' => 'El Salvador', |
280 | | - 'gq' => 'Equatorial Guinea', |
281 | | - 'er' => 'Eritrea', |
282 | | - 'ee' => 'Estonia', |
283 | | - 'et' => 'Ethiopia', |
284 | | - 'fk' => 'Falkland Islands (malvinas)', |
285 | | - 'fo' => 'Faroe Islands', |
286 | | - 'fj' => 'Fiji', |
287 | | - 'fi' => 'Finland', |
288 | | - 'fr' => 'France', |
289 | | - 'gf' => 'French Guiana', |
290 | | - 'pf' => 'French Polynesia', |
291 | | - 'tf' => 'French Southern Territories', |
292 | | - 'ga' => 'Gabon', |
293 | | - 'gm' => 'Gambia', |
294 | | - 'ge' => 'Georgia', |
295 | | - 'de' => 'Germany', |
296 | | - 'gh' => 'Ghana', |
297 | | - 'gi' => 'Gibraltar', |
298 | | - 'gr' => 'Greece', |
299 | | - 'gl' => 'Greenland', |
300 | | - 'gd' => 'Grenada', |
301 | | - 'gp' => 'Guadeloupe', |
302 | | - 'gu' => 'Guam', |
303 | | - 'gt' => 'Guatemala', |
304 | | - 'gn' => 'Guinea', |
305 | | - 'gw' => 'Guinea-Bissau', |
306 | | - 'gy' => 'Guyana', |
307 | | - 'ht' => 'Haiti', |
308 | | - 'hm' => 'Heard Island and Mcdonald Islands', |
309 | | - 'va' => 'Holy See (Vatican City)', |
310 | | - 'hn' => 'Honduras', |
311 | | - 'hu' => 'Hungary', |
312 | | - 'is' => 'Iceland', |
313 | | - 'in' => 'India', |
314 | | - 'id' => 'Indonesia', |
315 | | - 'ir' => 'Iran, Islamic Republic of', |
316 | | - 'iq' => 'Iraq', |
317 | | - 'ie' => 'Ireland', |
318 | | - 'il' => 'Israel', |
319 | | - 'it' => 'Italy', |
320 | | - 'jm' => 'Jamaica', |
321 | | - 'jp' => 'Japan', |
322 | | - 'jo' => 'Jordan', |
323 | | - 'kz' => 'Kazakhstan', |
324 | | - 'ke' => 'Kenya', |
325 | | - 'ki' => 'Kiribati', |
326 | | - 'kp' => 'Democratic People\'s Republic of Korea', |
327 | | - 'kr' => 'Republic of Korea', |
328 | | - 'kw' => 'Kuwait', |
329 | | - 'kg' => 'Kyrgyzstan', |
330 | | - 'la' => 'Lao People\'s Democratic Republic', |
331 | | - 'lv' => 'Latvia', |
332 | | - 'lb' => 'Lebanon', |
333 | | - 'ls' => 'Lesotho', |
334 | | - 'lr' => 'Liberia', |
335 | | - 'ly' => 'Libyan Arab Jamahiriya', |
336 | | - 'li' => 'Liechtenstein', |
337 | | - 'lt' => 'Lithuania', |
338 | | - 'lu' => 'Luxembourg', |
339 | | - 'mo' => 'Macao', |
340 | | - 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
341 | | - 'mg' => 'Madagascar', |
342 | | - 'mw' => 'Malawi', |
343 | | - 'my' => 'Malaysia', |
344 | | - 'mv' => 'Maldives', |
345 | | - 'ml' => 'Mali', |
346 | | - 'mt' => 'Malta', |
347 | | - 'mh' => 'Marshall Islands', |
348 | | - 'mq' => 'Martinique', |
349 | | - 'mr' => 'Mauritania', |
350 | | - 'mu' => 'Mauritius', |
351 | | - 'yt' => 'Mayotte', |
352 | | - 'mx' => 'Mexico', |
353 | | - 'fm' => 'Micronesia, Federated States of', |
354 | | - 'md' => 'Moldova, Republic of', |
355 | | - 'mc' => 'Monaco SAR', |
356 | | - 'mn' => 'Mongolia', |
357 | | - 'me' => 'Montenegro', |
358 | | - 'ms' => 'Montserrat', |
359 | | - 'ma' => 'Morocco', |
360 | | - 'mz' => 'Mozambique', |
361 | | - 'na' => 'Namibia', |
362 | | - 'nr' => 'Nauru', |
363 | | - 'np' => 'Nepal', |
364 | | - 'nl' => 'Netherlands', |
365 | | - 'an' => 'Netherlands Antilles', |
366 | | - 'nc' => 'New Caledonia', |
367 | | - 'nz' => 'New Zealand', |
368 | | - 'ni' => 'Nicaragua', |
369 | | - 'ne' => 'Niger', |
370 | | - 'ng' => 'Nigeria', |
371 | | - 'nu' => 'Niue', |
372 | | - 'nf' => 'Norfolk Island', |
373 | | - 'mp' => 'Northern Mariana Islands', |
374 | | - 'no' => 'Norway', |
375 | | - 'om' => 'Oman', |
376 | | - 'pk' => 'Pakistan', |
377 | | - 'pw' => 'Palau', |
378 | | - 'ps' => 'Palestinian Territory', |
379 | | - 'pa' => 'Panama', |
380 | | - 'pg' => 'Papua New Guinea', |
381 | | - 'py' => 'Paraguay', |
382 | | - 'pe' => 'Peru', |
383 | | - 'ph' => 'Philippines', |
384 | | - 'pn' => 'Pitcairn', |
385 | | - 'pl' => 'Poland', |
386 | | - 'pt' => 'Portugal', |
387 | | - 'pr' => 'Puerto Rico', |
388 | | - 'qa' => 'Qatar', |
389 | | - 're' => 'Reunion', |
390 | | - 'ro' => 'Romania', |
391 | | - 'ru' => 'Russian Federation', |
392 | | - 'rw' => 'Rwanda', |
393 | | - 'sh' => 'Saint Helena', |
394 | | - 'kn' => 'Saint Kitts and Nevis', |
395 | | - 'lc' => 'Saint Lucia', |
396 | | - 'pm' => 'Saint Pierre and Miquelon', |
397 | | - 'vc' => 'Saint Vincent and the Grenadines', |
398 | | - 'ws' => 'Samoa', |
399 | | - 'sm' => 'San Marino', |
400 | | - 'st' => 'Sao Tome and Principe', |
401 | | - 'sa' => 'Saudi Arabia', |
402 | | - 'sn' => 'Senegal', |
403 | | - 'rs' => 'Serbia', |
404 | | - 'sc' => 'Seychelles', |
405 | | - 'sl' => 'Sierra Leone', |
406 | | - 'sg' => 'Singapore', |
407 | | - 'sk' => 'Slovakia', |
408 | | - 'si' => 'Slovenia', |
409 | | - 'sb' => 'Solomon Islands', |
410 | | - 'so' => 'Somalia', |
411 | | - 'za' => 'South Africa', |
412 | | - 'gs' => 'South Georgia and the South Sandwich Islands', |
413 | | - 'es' => 'Spain', |
414 | | - 'lk' => 'Sri Lanka', |
415 | | - 'sd' => 'Sudan', |
416 | | - 'sr' => 'Suriname', |
417 | | - 'sj' => 'Svalbard and Jan Mayen', |
418 | | - 'sz' => 'Swaziland', |
419 | | - 'se' => 'Sweden', |
420 | | - 'ch' => 'Switzerland', |
421 | | - 'sy' => 'Syrian Arab Republic', |
422 | | - 'tj' => 'Tajikistan', |
423 | | - 'tz' => 'Tanzania, United Republic of', |
424 | | - 'th' => 'Thailand', |
425 | | - 'tl' => 'Timor-leste', |
426 | | - 'tg' => 'Togo', |
427 | | - 'tk' => 'Tokelau', |
428 | | - 'to' => 'Tonga', |
429 | | - 'tt' => 'Trinidad and Tobago', |
430 | | - 'tn' => 'Tunisia', |
431 | | - 'tr' => 'Turkey', |
432 | | - 'tm' => 'Turkmenistan', |
433 | | - 'tc' => 'Turks and Caicos Islands', |
434 | | - 'tv' => 'Tuvalu', |
435 | | - 'ug' => 'Uganda', |
436 | | - 'ua' => 'Ukraine', |
437 | | - 'ae' => 'United Arab Emirates', |
438 | | - 'gb' => 'United Kingdom', |
439 | | - 'us' => 'United States', |
440 | | - 'um' => 'United States Minor Outlying Islands', |
441 | | - 'uy' => 'Uruguay', |
442 | | - 'uz' => 'Uzbekistan', |
443 | | - 'vu' => 'Vanuatu', |
444 | | - 've' => 'Venezuela', |
445 | | - 'vn' => 'Viet Nam', |
446 | | - 'vg' => 'Virgin Islands, British', |
447 | | - 'vi' => 'Virgin Islands, U.S.', |
448 | | - 'wf' => 'Wallis and Futuna', |
449 | | - 'eh' => 'Western Sahara', |
450 | | - 'ye' => 'Yemen', |
451 | | - 'zm' => 'Zambia', |
452 | | - 'zw' => 'Zimbabwe' |
| 212 | + 'af' => 'Afghanistan', |
| 213 | + 'ax' => 'Aland Islands', |
| 214 | + 'al' => 'Albania', |
| 215 | + 'dz' => 'Algeria', |
| 216 | + 'as' => 'American Samoa', |
| 217 | + 'ad' => 'Andorra', |
| 218 | + 'ao' => 'Angola', |
| 219 | + 'ai' => 'Anguilla', |
| 220 | + 'aq' => 'Antarctica', |
| 221 | + 'ag' => 'Antigua and Barbuda', |
| 222 | + 'ar' => 'Argentina', |
| 223 | + 'am' => 'Armenia', |
| 224 | + 'aw' => 'Aruba', |
| 225 | + 'au' => 'Australia', |
| 226 | + 'at' => 'Austria', |
| 227 | + 'az' => 'Azerbaijan', |
| 228 | + 'bs' => 'Bahamas', |
| 229 | + 'bh' => 'Bahrain', |
| 230 | + 'bd' => 'Bangladesh', |
| 231 | + 'bb' => 'Barbados', |
| 232 | + 'by' => 'Belarus', |
| 233 | + 'be' => 'Belgium', |
| 234 | + 'bz' => 'Belize', |
| 235 | + 'bj' => 'Benin', |
| 236 | + 'bm' => 'Bermuda', |
| 237 | + 'bt' => 'Bhutan', |
| 238 | + 'bo' => 'Bolivia', |
| 239 | + 'ba' => 'Bosnia and Herzegovina', |
| 240 | + 'bw' => 'Botswana', |
| 241 | + 'bv' => 'Bouvet Island', |
| 242 | + 'br' => 'Brazil', |
| 243 | + 'io' => 'British Indian Ocean Territory', |
| 244 | + 'bn' => 'Brunei Darussalam', |
| 245 | + 'bg' => 'Bulgaria', |
| 246 | + 'bf' => 'Burkina Faso', |
| 247 | + 'mm' => 'Burma (Myanmar)', |
| 248 | + 'bi' => 'Burundi', |
| 249 | + 'kh' => 'Cambodia', |
| 250 | + 'cm' => 'Cameroon', |
| 251 | + 'ca' => 'Canada', |
| 252 | + 'cv' => 'Cape Verde', |
| 253 | + 'ky' => 'Cayman Islands', |
| 254 | + 'cf' => 'Central African Republic', |
| 255 | + 'td' => 'Chad', |
| 256 | + 'cl' => 'Chile', |
| 257 | + 'hk' => 'Hong Kong SAR', |
| 258 | + 'cn' => 'People\'s Republic of China', |
| 259 | + 'tw' => 'Republic of China (Taiwan)', |
| 260 | + 'cx' => 'Christmas Island', |
| 261 | + 'cc' => 'Cocos (keeling) Islands', |
| 262 | + 'co' => 'Colombia', |
| 263 | + 'km' => 'Comoros', |
| 264 | + 'cg' => 'Congo', |
| 265 | + 'cd' => 'Congo\, The Democratic Republic of the', |
| 266 | + 'ck' => 'Cook Islands', |
| 267 | + 'cr' => 'Costa Rica', |
| 268 | + 'ci' => 'Cote D\'ivoire', |
| 269 | + 'hr' => 'Croatia', |
| 270 | + 'cu' => 'Cuba', |
| 271 | + 'cy' => 'Cyprus', |
| 272 | + 'cz' => 'Czech Republic', |
| 273 | + 'dk' => 'Denmark', |
| 274 | + 'dj' => 'Djibouti', |
| 275 | + 'dm' => 'Dominica', |
| 276 | + 'do' => 'Dominican Republic', |
| 277 | + 'ec' => 'Ecuador', |
| 278 | + 'eg' => 'Egypt', |
| 279 | + 'sv' => 'El Salvador', |
| 280 | + 'gq' => 'Equatorial Guinea', |
| 281 | + 'er' => 'Eritrea', |
| 282 | + 'ee' => 'Estonia', |
| 283 | + 'et' => 'Ethiopia', |
| 284 | + 'fk' => 'Falkland Islands (malvinas)', |
| 285 | + 'fo' => 'Faroe Islands', |
| 286 | + 'fj' => 'Fiji', |
| 287 | + 'fi' => 'Finland', |
| 288 | + 'fr' => 'France', |
| 289 | + 'gf' => 'French Guiana', |
| 290 | + 'pf' => 'French Polynesia', |
| 291 | + 'tf' => 'French Southern Territories', |
| 292 | + 'ga' => 'Gabon', |
| 293 | + 'gm' => 'Gambia', |
| 294 | + 'ge' => 'Georgia', |
| 295 | + 'de' => 'Germany', |
| 296 | + 'gh' => 'Ghana', |
| 297 | + 'gi' => 'Gibraltar', |
| 298 | + 'gr' => 'Greece', |
| 299 | + 'gl' => 'Greenland', |
| 300 | + 'gd' => 'Grenada', |
| 301 | + 'gp' => 'Guadeloupe', |
| 302 | + 'gu' => 'Guam', |
| 303 | + 'gt' => 'Guatemala', |
| 304 | + 'gn' => 'Guinea', |
| 305 | + 'gw' => 'Guinea-Bissau', |
| 306 | + 'gy' => 'Guyana', |
| 307 | + 'ht' => 'Haiti', |
| 308 | + 'hm' => 'Heard Island and Mcdonald Islands', |
| 309 | + 'va' => 'Holy See (Vatican City)', |
| 310 | + 'hn' => 'Honduras', |
| 311 | + 'hu' => 'Hungary', |
| 312 | + 'is' => 'Iceland', |
| 313 | + 'in' => 'India', |
| 314 | + 'id' => 'Indonesia', |
| 315 | + 'ir' => 'Iran, Islamic Republic of', |
| 316 | + 'iq' => 'Iraq', |
| 317 | + 'ie' => 'Ireland', |
| 318 | + 'il' => 'Israel', |
| 319 | + 'it' => 'Italy', |
| 320 | + 'jm' => 'Jamaica', |
| 321 | + 'jp' => 'Japan', |
| 322 | + 'jo' => 'Jordan', |
| 323 | + 'kz' => 'Kazakhstan', |
| 324 | + 'ke' => 'Kenya', |
| 325 | + 'ki' => 'Kiribati', |
| 326 | + 'kp' => 'Democratic People\'s Republic of Korea', |
| 327 | + 'kr' => 'Republic of Korea', |
| 328 | + 'kw' => 'Kuwait', |
| 329 | + 'kg' => 'Kyrgyzstan', |
| 330 | + 'la' => 'Lao People\'s Democratic Republic', |
| 331 | + 'lv' => 'Latvia', |
| 332 | + 'lb' => 'Lebanon', |
| 333 | + 'ls' => 'Lesotho', |
| 334 | + 'lr' => 'Liberia', |
| 335 | + 'ly' => 'Libyan Arab Jamahiriya', |
| 336 | + 'li' => 'Liechtenstein', |
| 337 | + 'lt' => 'Lithuania', |
| 338 | + 'lu' => 'Luxembourg', |
| 339 | + 'mo' => 'Macao', |
| 340 | + 'mk' => 'Macedonia, The Former Yugoslav Republic of', |
| 341 | + 'mg' => 'Madagascar', |
| 342 | + 'mw' => 'Malawi', |
| 343 | + 'my' => 'Malaysia', |
| 344 | + 'mv' => 'Maldives', |
| 345 | + 'ml' => 'Mali', |
| 346 | + 'mt' => 'Malta', |
| 347 | + 'mh' => 'Marshall Islands', |
| 348 | + 'mq' => 'Martinique', |
| 349 | + 'mr' => 'Mauritania', |
| 350 | + 'mu' => 'Mauritius', |
| 351 | + 'yt' => 'Mayotte', |
| 352 | + 'mx' => 'Mexico', |
| 353 | + 'fm' => 'Micronesia, Federated States of', |
| 354 | + 'md' => 'Moldova, Republic of', |
| 355 | + 'mc' => 'Monaco SAR', |
| 356 | + 'mn' => 'Mongolia', |
| 357 | + 'me' => 'Montenegro', |
| 358 | + 'ms' => 'Montserrat', |
| 359 | + 'ma' => 'Morocco', |
| 360 | + 'mz' => 'Mozambique', |
| 361 | + 'na' => 'Namibia', |
| 362 | + 'nr' => 'Nauru', |
| 363 | + 'np' => 'Nepal', |
| 364 | + 'nl' => 'Netherlands', |
| 365 | + 'an' => 'Netherlands Antilles', |
| 366 | + 'nc' => 'New Caledonia', |
| 367 | + 'nz' => 'New Zealand', |
| 368 | + 'ni' => 'Nicaragua', |
| 369 | + 'ne' => 'Niger', |
| 370 | + 'ng' => 'Nigeria', |
| 371 | + 'nu' => 'Niue', |
| 372 | + 'nf' => 'Norfolk Island', |
| 373 | + 'mp' => 'Northern Mariana Islands', |
| 374 | + 'no' => 'Norway', |
| 375 | + 'om' => 'Oman', |
| 376 | + 'pk' => 'Pakistan', |
| 377 | + 'pw' => 'Palau', |
| 378 | + 'ps' => 'Palestinian Territory', |
| 379 | + 'pa' => 'Panama', |
| 380 | + 'pg' => 'Papua New Guinea', |
| 381 | + 'py' => 'Paraguay', |
| 382 | + 'pe' => 'Peru', |
| 383 | + 'ph' => 'Philippines', |
| 384 | + 'pn' => 'Pitcairn', |
| 385 | + 'pl' => 'Poland', |
| 386 | + 'pt' => 'Portugal', |
| 387 | + 'pr' => 'Puerto Rico', |
| 388 | + 'qa' => 'Qatar', |
| 389 | + 're' => 'Reunion', |
| 390 | + 'ro' => 'Romania', |
| 391 | + 'ru' => 'Russian Federation', |
| 392 | + 'rw' => 'Rwanda', |
| 393 | + 'sh' => 'Saint Helena', |
| 394 | + 'kn' => 'Saint Kitts and Nevis', |
| 395 | + 'lc' => 'Saint Lucia', |
| 396 | + 'pm' => 'Saint Pierre and Miquelon', |
| 397 | + 'vc' => 'Saint Vincent and the Grenadines', |
| 398 | + 'ws' => 'Samoa', |
| 399 | + 'sm' => 'San Marino', |
| 400 | + 'st' => 'Sao Tome and Principe', |
| 401 | + 'sa' => 'Saudi Arabia', |
| 402 | + 'sn' => 'Senegal', |
| 403 | + 'rs' => 'Serbia', |
| 404 | + 'sc' => 'Seychelles', |
| 405 | + 'sl' => 'Sierra Leone', |
| 406 | + 'sg' => 'Singapore', |
| 407 | + 'sk' => 'Slovakia', |
| 408 | + 'si' => 'Slovenia', |
| 409 | + 'sb' => 'Solomon Islands', |
| 410 | + 'so' => 'Somalia', |
| 411 | + 'za' => 'South Africa', |
| 412 | + 'gs' => 'South Georgia and the South Sandwich Islands', |
| 413 | + 'es' => 'Spain', |
| 414 | + 'lk' => 'Sri Lanka', |
| 415 | + 'sd' => 'Sudan', |
| 416 | + 'sr' => 'Suriname', |
| 417 | + 'sj' => 'Svalbard and Jan Mayen', |
| 418 | + 'sz' => 'Swaziland', |
| 419 | + 'se' => 'Sweden', |
| 420 | + 'ch' => 'Switzerland', |
| 421 | + 'sy' => 'Syrian Arab Republic', |
| 422 | + 'tj' => 'Tajikistan', |
| 423 | + 'tz' => 'Tanzania, United Republic of', |
| 424 | + 'th' => 'Thailand', |
| 425 | + 'tl' => 'Timor-leste', |
| 426 | + 'tg' => 'Togo', |
| 427 | + 'tk' => 'Tokelau', |
| 428 | + 'to' => 'Tonga', |
| 429 | + 'tt' => 'Trinidad and Tobago', |
| 430 | + 'tn' => 'Tunisia', |
| 431 | + 'tr' => 'Turkey', |
| 432 | + 'tm' => 'Turkmenistan', |
| 433 | + 'tc' => 'Turks and Caicos Islands', |
| 434 | + 'tv' => 'Tuvalu', |
| 435 | + 'ug' => 'Uganda', |
| 436 | + 'ua' => 'Ukraine', |
| 437 | + 'ae' => 'United Arab Emirates', |
| 438 | + 'gb' => 'United Kingdom', |
| 439 | + 'us' => 'United States', |
| 440 | + 'um' => 'United States Minor Outlying Islands', |
| 441 | + 'uy' => 'Uruguay', |
| 442 | + 'uz' => 'Uzbekistan', |
| 443 | + 'vu' => 'Vanuatu', |
| 444 | + 've' => 'Venezuela', |
| 445 | + 'vn' => 'Viet Nam', |
| 446 | + 'vg' => 'Virgin Islands, British', |
| 447 | + 'vi' => 'Virgin Islands, U.S.', |
| 448 | + 'wf' => 'Wallis and Futuna', |
| 449 | + 'eh' => 'Western Sahara', |
| 450 | + 'ye' => 'Yemen', |
| 451 | + 'zm' => 'Zambia', |
| 452 | + 'zw' => 'Zimbabwe' |
453 | 453 | ); |
Index: trunk/wikimania/wmreg/includes/languages.php |
— | — | @@ -76,8 +76,8 @@ |
77 | 77 | 'cps' => 'Capiceño', # Capiznon |
78 | 78 | 'cr' => 'Nēhiyawēwin / ᓀᐦᐃᔭᐍᐏᐣ', # Cree |
79 | 79 | 'crh' => 'Qırımtatarca', # Crimean Tatar (multiple scripts - defaults to Latin) |
80 | | - 'crh-latn' => "\xE2\x80\xAAQırımtatarca (Latin)\xE2\x80\xAC", # Crimean Tatar (Latin) |
81 | | - 'crh-cyrl' => "\xE2\x80\xAAКъырымтатарджа (Кирилл)\xE2\x80\xAC", # Crimean Tatar (Cyrillic) |
| 80 | + 'crh-latn' => "\xE2\x80\xAAQırımtatarca (Latin)\xE2\x80\xAC", # Crimean Tatar (Latin) |
| 81 | + 'crh-cyrl' => "\xE2\x80\xAAКъырымтатарджа (Кирилл)\xE2\x80\xAC", # Crimean Tatar (Cyrillic) |
82 | 82 | 'cs' => 'Česky', # Czech |
83 | 83 | 'csb' => 'Kaszëbsczi', # Cassubian |
84 | 84 | 'cu' => 'Словѣ́ньскъ / ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ', # Old Church Slavonic (ancient language) |
— | — | @@ -296,7 +296,7 @@ |
297 | 297 | 'sah' => 'Саха тыла', # Sakha |
298 | 298 | 'sc' => 'Sardu', # Sardinian |
299 | 299 | 'scn' => 'Sicilianu', # Sicilian |
300 | | - 'sco' => 'Scots', # Scots |
| 300 | + 'sco' => 'Scots', # Scots |
301 | 301 | 'sd' => 'سنڌي', # Sindhi |
302 | 302 | 'sdc' => 'Sassaresu', # Sassarese |
303 | 303 | 'se' => 'Sámegiella', # Northern Sami |
— | — | @@ -339,7 +339,7 @@ |
340 | 340 | 'tl' => 'Tagalog', # Tagalog |
341 | 341 | 'tn' => 'Setswana', # Setswana |
342 | 342 | 'to' => 'lea faka-Tonga', # Tonga (Tonga Islands) |
343 | | - 'tokipona' => 'Toki Pona', # Toki Pona |
| 343 | + 'tokipona' => 'Toki Pona', # Toki Pona |
344 | 344 | 'tp' => 'Toki Pona (deprecated:tokipona)', # Toki Pona - non-standard language code |
345 | 345 | 'tpi' => 'Tok Pisin', # Tok Pisin |
346 | 346 | 'tr' => 'Türkçe', # Turkish |
Index: trunk/wikimania/wmreg/recaptchalib.php |
— | — | @@ -2,11 +2,11 @@ |
3 | 3 | /* |
4 | 4 | * This is a PHP library that handles calling reCAPTCHA. |
5 | 5 | * - Documentation and latest version |
6 | | - * http://recaptcha.net/plugins/php/ |
| 6 | + * http://recaptcha.net/plugins/php/ |
7 | 7 | * - Get a reCAPTCHA API Key |
8 | | - * https://www.google.com/recaptcha/admin/create |
| 8 | + * https://www.google.com/recaptcha/admin/create |
9 | 9 | * - Discussion group |
10 | | - * http://groups.google.com/group/recaptcha |
| 10 | + * http://groups.google.com/group/recaptcha |
11 | 11 | * |
12 | 12 | * Copyright (c) 2007 reCAPTCHA -- http://recaptcha.net |
13 | 13 | * AUTHORS: |
— | — | @@ -45,13 +45,13 @@ |
46 | 46 | * @return string - encoded request |
47 | 47 | */ |
48 | 48 | function _recaptcha_qsencode ( $data ) { |
49 | | - $req = ""; |
50 | | - foreach ( $data as $key => $value ) |
51 | | - $req .= $key . '=' . urlencode( stripslashes( $value ) ) . '&'; |
| 49 | + $req = ""; |
| 50 | + foreach ( $data as $key => $value ) |
| 51 | + $req .= $key . '=' . urlencode( stripslashes( $value ) ) . '&'; |
52 | 52 | |
53 | | - // Cut the last '&' |
54 | | - $req = substr( $req, 0, strlen( $req ) -1 ); |
55 | | - return $req; |
| 53 | + // Cut the last '&' |
| 54 | + $req = substr( $req, 0, strlen( $req ) -1 ); |
| 55 | + return $req; |
56 | 56 | } |
57 | 57 | |
58 | 58 | |
— | — | @@ -66,29 +66,29 @@ |
67 | 67 | */ |
68 | 68 | function _recaptcha_http_post( $host, $path, $data, $port = 80 ) { |
69 | 69 | |
70 | | - $req = _recaptcha_qsencode ( $data ); |
| 70 | + $req = _recaptcha_qsencode ( $data ); |
71 | 71 | |
72 | | - $http_request = "POST $path HTTP/1.0\r\n"; |
73 | | - $http_request .= "Host: $host\r\n"; |
74 | | - $http_request .= "Content-Type: application/x-www-form-urlencoded;\r\n"; |
75 | | - $http_request .= "Content-Length: " . strlen( $req ) . "\r\n"; |
76 | | - $http_request .= "User-Agent: reCAPTCHA/PHP\r\n"; |
77 | | - $http_request .= "\r\n"; |
78 | | - $http_request .= $req; |
| 72 | + $http_request = "POST $path HTTP/1.0\r\n"; |
| 73 | + $http_request .= "Host: $host\r\n"; |
| 74 | + $http_request .= "Content-Type: application/x-www-form-urlencoded;\r\n"; |
| 75 | + $http_request .= "Content-Length: " . strlen( $req ) . "\r\n"; |
| 76 | + $http_request .= "User-Agent: reCAPTCHA/PHP\r\n"; |
| 77 | + $http_request .= "\r\n"; |
| 78 | + $http_request .= $req; |
79 | 79 | |
80 | | - $response = ''; |
81 | | - if ( false == ( $fs = @fsockopen( $host, $port, $errno, $errstr, 40 ) ) ) { |
82 | | - die ( 'Could not open socket' ); |
83 | | - } |
| 80 | + $response = ''; |
| 81 | + if ( false == ( $fs = @fsockopen( $host, $port, $errno, $errstr, 40 ) ) ) { |
| 82 | + die ( 'Could not open socket' ); |
| 83 | + } |
84 | 84 | |
85 | | - fwrite( $fs, $http_request ); |
| 85 | + fwrite( $fs, $http_request ); |
86 | 86 | |
87 | | - while ( !feof( $fs ) ) |
88 | | - $response .= fgets( $fs, 1160 ); // One TCP-IP packet |
89 | | - fclose( $fs ); |
90 | | - $response = explode( "\r\n\r\n", $response, 2 ); |
| 87 | + while ( !feof( $fs ) ) |
| 88 | + $response .= fgets( $fs, 1160 ); // One TCP-IP packet |
| 89 | + fclose( $fs ); |
| 90 | + $response = explode( "\r\n\r\n", $response, 2 ); |
91 | 91 | |
92 | | - return $response; |
| 92 | + return $response; |
93 | 93 | } |
94 | 94 | |
95 | 95 | |
— | — | @@ -110,36 +110,32 @@ |
111 | 111 | } |
112 | 112 | |
113 | 113 | if ( $use_ssl ) { |
114 | | - $server = RECAPTCHA_API_SECURE_SERVER; |
115 | | - } else { |
116 | | - $server = RECAPTCHA_API_SERVER; |
117 | | - } |
| 114 | + $server = RECAPTCHA_API_SECURE_SERVER; |
| 115 | + } else { |
| 116 | + $server = RECAPTCHA_API_SERVER; |
| 117 | + } |
118 | 118 | |
119 | | - $errorpart = ""; |
120 | | - if ( $error ) { |
121 | | - $errorpart = "&error=" . $error; |
122 | | - } |
123 | | - return '<script type="text/javascript" src="' . $server . '/challenge?k=' . $pubkey . $errorpart . '"></script> |
| 119 | + $errorpart = ""; |
| 120 | + if ( $error ) { |
| 121 | + $errorpart = "&error=" . $error; |
| 122 | + } |
| 123 | + return '<script type="text/javascript" src="' . $server . '/challenge?k=' . $pubkey . $errorpart . '"></script> |
124 | 124 | |
125 | 125 | <noscript> |
126 | | - <iframe src="' . $server . '/noscript?k=' . $pubkey . $errorpart . '" height="300" width="500" frameborder="0"></iframe><br/> |
127 | | - <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea> |
128 | | - <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/> |
| 126 | + <iframe src="' . $server . '/noscript?k=' . $pubkey . $errorpart . '" height="300" width="500" frameborder="0"></iframe><br/> |
| 127 | + <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea> |
| 128 | + <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/> |
129 | 129 | </noscript>'; |
130 | 130 | } |
131 | 131 | |
132 | | - |
133 | | - |
134 | | - |
135 | 132 | /** |
136 | 133 | * A ReCaptchaResponse is returned from recaptcha_check_answer() |
137 | 134 | */ |
138 | 135 | class ReCaptchaResponse { |
139 | | - var $is_valid; |
140 | | - var $error; |
| 136 | + var $is_valid; |
| 137 | + var $error; |
141 | 138 | } |
142 | 139 | |
143 | | - |
144 | 140 | /** |
145 | 141 | * Calls an HTTP POST function to verify if the user's guess was correct |
146 | 142 | * @param string $privkey |
— | — | @@ -158,38 +154,35 @@ |
159 | 155 | if ( $remoteip == null || $remoteip == '' ) { |
160 | 156 | die ( "For security reasons, you must pass the remote ip to reCAPTCHA" ); |
161 | 157 | } |
| 158 | + // discard spam submissions |
| 159 | + if ( $challenge == null || strlen( $challenge ) == 0 || $response == null || strlen( $response ) == 0 ) { |
| 160 | + $recaptcha_response = new ReCaptchaResponse(); |
| 161 | + $recaptcha_response->is_valid = false; |
| 162 | + $recaptcha_response->error = 'incorrect-captcha-sol'; |
| 163 | + return $recaptcha_response; |
| 164 | + } |
162 | 165 | |
| 166 | + $response = _recaptcha_http_post ( RECAPTCHA_VERIFY_SERVER, "/recaptcha/api/verify", |
| 167 | + array ( |
| 168 | + 'privatekey' => $privkey, |
| 169 | + 'remoteip' => $remoteip, |
| 170 | + 'challenge' => $challenge, |
| 171 | + 'response' => $response |
| 172 | + ) + $extra_params |
| 173 | + ); |
163 | 174 | |
| 175 | + $answers = explode ( "\n", $response [1] ); |
| 176 | + $recaptcha_response = new ReCaptchaResponse(); |
164 | 177 | |
165 | | - // discard spam submissions |
166 | | - if ( $challenge == null || strlen( $challenge ) == 0 || $response == null || strlen( $response ) == 0 ) { |
167 | | - $recaptcha_response = new ReCaptchaResponse(); |
168 | | - $recaptcha_response->is_valid = false; |
169 | | - $recaptcha_response->error = 'incorrect-captcha-sol'; |
170 | | - return $recaptcha_response; |
171 | | - } |
| 178 | + if ( trim ( $answers [0] ) == 'true' ) { |
| 179 | + $recaptcha_response->is_valid = true; |
| 180 | + } |
| 181 | + else { |
| 182 | + $recaptcha_response->is_valid = false; |
| 183 | + $recaptcha_response->error = $answers [1]; |
| 184 | + } |
| 185 | + return $recaptcha_response; |
172 | 186 | |
173 | | - $response = _recaptcha_http_post ( RECAPTCHA_VERIFY_SERVER, "/recaptcha/api/verify", |
174 | | - array ( |
175 | | - 'privatekey' => $privkey, |
176 | | - 'remoteip' => $remoteip, |
177 | | - 'challenge' => $challenge, |
178 | | - 'response' => $response |
179 | | - ) + $extra_params |
180 | | - ); |
181 | | - |
182 | | - $answers = explode ( "\n", $response [1] ); |
183 | | - $recaptcha_response = new ReCaptchaResponse(); |
184 | | - |
185 | | - if ( trim ( $answers [0] ) == 'true' ) { |
186 | | - $recaptcha_response->is_valid = true; |
187 | | - } |
188 | | - else { |
189 | | - $recaptcha_response->is_valid = false; |
190 | | - $recaptcha_response->error = $answers [1]; |
191 | | - } |
192 | | - return $recaptcha_response; |
193 | | - |
194 | 187 | } |
195 | 188 | |
196 | 189 | /** |
— | — | @@ -230,10 +223,9 @@ |
231 | 224 | function recaptcha_mailhide_url( $pubkey, $privkey, $email ) { |
232 | 225 | if ( $pubkey == '' || $pubkey == null || $privkey == "" || $privkey == null ) { |
233 | 226 | die ( "To use reCAPTCHA Mailhide, you have to sign up for a public and private key, " . |
234 | | - "you can do so at <a href='http://www.google.com/recaptcha/mailhide/apikey'>http://www.google.com/recaptcha/mailhide/apikey</a>" ); |
| 227 | + "you can do so at <a href='http://www.google.com/recaptcha/mailhide/apikey'>http://www.google.com/recaptcha/mailhide/apikey</a>" ); |
235 | 228 | } |
236 | 229 | |
237 | | - |
238 | 230 | $ky = pack( 'H*', $privkey ); |
239 | 231 | $cryptmail = _recaptcha_aes_encrypt ( $email, $ky ); |
240 | 232 | |
Index: trunk/wikimania/wmreg/index.php |
— | — | @@ -48,9 +48,9 @@ |
49 | 49 | |
50 | 50 | foreach ( $unset_vars as $key ) |
51 | 51 | { |
52 | | - if ( !in_array( $key, $chk_unset ) && isset( $$key ) ) |
53 | | - { unset( $$key ); } |
54 | | - } |
| 52 | + if ( !in_array( $key, $chk_unset ) && isset( $$key ) ) |
| 53 | + { unset( $$key ); } |
| 54 | + } |
55 | 55 | unset( $unset_vars ); |
56 | 56 | unset( $chk_unset ); |
57 | 57 | } |
— | — | @@ -288,14 +288,14 @@ |
289 | 289 | if ( $check_captcha ) |
290 | 290 | { |
291 | 291 | require_once( 'recaptchalib.php' ); |
292 | | - $resp = recaptcha_check_answer ( $recaptcha_privatekey, |
293 | | - $_SERVER["REMOTE_ADDR"], |
294 | | - $_POST["recaptcha_challenge_field"], |
295 | | - $_POST["recaptcha_response_field"] ); |
| 292 | + $resp = recaptcha_check_answer ( $recaptcha_privatekey, |
| 293 | + $_SERVER["REMOTE_ADDR"], |
| 294 | + $_POST["recaptcha_challenge_field"], |
| 295 | + $_POST["recaptcha_response_field"] ); |
296 | 296 | |
297 | | - if ( !$resp->is_valid ) { |
298 | | - $error_array[] = create_error( 'wrong', 'captcha' ); |
299 | | - } |
| 297 | + if ( !$resp->is_valid ) { |
| 298 | + $error_array[] = create_error( 'wrong', 'captcha' ); |
| 299 | + } |
300 | 300 | } |
301 | 301 | |
302 | 302 | /* Record UTC / GMT Date */ |
— | — | @@ -955,13 +955,13 @@ |
956 | 956 | else |
957 | 957 | { $error_array[] = $data['given_name'] . ' ' . $data['surname'] . '(' . $no . ') is not confirmed due to databse error.'; } |
958 | 958 | } |
959 | | - else if ( $MY_REQUEST['status'] == 2 ) |
960 | | - { |
| 959 | + else if ( $MY_REQUEST['status'] == 2 ) |
| 960 | + { |
961 | 961 | if ( $sql->updateData( 'registration', array( 'status' => $MY_REQUEST['status'] ), '`unique_code`=\'' . $no . '\'' ) ) |
962 | 962 | { $error_array[] = $data['given_name'] . ' ' . $data['surname'] . '(' . $no . ') has been rejected successfully.'; } |
963 | 963 | else |
964 | 964 | { $error_array[] = $data['given_name'] . ' ' . $data['surname'] . '(' . $no . ') is not rejected due to database error.'; } |
965 | | - } |
| 965 | + } |
966 | 966 | |
967 | 967 | if ( $MY_REQUEST['status'] == 1 ) |
968 | 968 | { |
— | — | @@ -1125,14 +1125,14 @@ |
1126 | 1126 | ' AND `unique_code`=\'' . $sql->EscapeString( $data['unique_code'] ) . '\'' ); |
1127 | 1127 | if ( !$sql_data = $sql->fetchAssoc( $result ) ) |
1128 | 1128 | { |
1129 | | - $error_array[] = 'Find #' . $data['no'] . ' Text file may be corrupted, please re-confirm '; |
| 1129 | + $error_array[] = 'Find #' . $data['no'] . ' Text file may be corrupted, please re-confirm '; |
1130 | 1130 | continue; |
1131 | 1131 | } |
1132 | 1132 | if ( $data['room_num1'] + $data['room_num2'] + $data['room_num3'] + |
1133 | 1133 | $data['room_num4'] + $data['room_num5'] == 0 ) |
1134 | 1134 | { echo 'Skip No.' . $data['no'] . ' '; continue; } |
1135 | 1135 | |
1136 | | - echo '<p>Preparing to write No.' . $data['no'] . 'Accommodation info ' . $data['room_num1'] . '/' . $data['room_num2'] . '/' . $data['room_num3'] . '/' . $data['room_num4'] . '/' . $data['room_num5'] . '...'; |
| 1136 | + echo '<p>Preparing to write No.' . $data['no'] . 'Accommodation info ' . $data['room_num1'] . '/' . $data['room_num2'] . '/' . $data['room_num3'] . '/' . $data['room_num4'] . '/' . $data['room_num5'] . '...'; |
1137 | 1137 | |
1138 | 1138 | /* Write Data */ |
1139 | 1139 | if ( !$sql->updateData( 'registration', array( |
— | — | @@ -1184,84 +1184,84 @@ |
1185 | 1185 | switch ( $MY_REQUEST['mode'] ) |
1186 | 1186 | { |
1187 | 1187 | case NULL: |
1188 | | - /* How many countries? */ |
1189 | | - $result = $sql->selectData( 'registration', array( 'country' ), '', NULL, array( 'count' => 1, 'distinct' => 1 ) ); |
1190 | | - $data = $sql->fetchArray( $result ); |
1191 | | - $register_data['total_countries'] = $data[0]; |
1192 | | - mysql_free_result( $result ); |
| 1188 | + /* How many countries? */ |
| 1189 | + $result = $sql->selectData( 'registration', array( 'country' ), '', NULL, array( 'count' => 1, 'distinct' => 1 ) ); |
| 1190 | + $data = $sql->fetchArray( $result ); |
| 1191 | + $register_data['total_countries'] = $data[0]; |
| 1192 | + mysql_free_result( $result ); |
1193 | 1193 | |
1194 | | - /* How about sex? */ |
1195 | | - $result = $sql->selectData( 'registration', NULL, '`sex` = \'m\'', NULL, array( 'count' => 1 ) ); |
1196 | | - $data = $sql->fetchArray( $result ); |
1197 | | - $register_data['total_male'] = $data[0]; |
1198 | | - mysql_free_result( $result ); |
| 1194 | + /* How about sex? */ |
| 1195 | + $result = $sql->selectData( 'registration', NULL, '`sex` = \'m\'', NULL, array( 'count' => 1 ) ); |
| 1196 | + $data = $sql->fetchArray( $result ); |
| 1197 | + $register_data['total_male'] = $data[0]; |
| 1198 | + mysql_free_result( $result ); |
1199 | 1199 | |
1200 | | - $result = $sql->selectData( 'registration', NULL, '`sex` = \'f\'', NULL, array( 'count' => 1 ) ); |
1201 | | - $data = $sql->fetchArray( $result ); |
1202 | | - $register_data['total_female'] = $data[0]; |
1203 | | - mysql_free_result( $result ); |
| 1200 | + $result = $sql->selectData( 'registration', NULL, '`sex` = \'f\'', NULL, array( 'count' => 1 ) ); |
| 1201 | + $data = $sql->fetchArray( $result ); |
| 1202 | + $register_data['total_female'] = $data[0]; |
| 1203 | + mysql_free_result( $result ); |
1204 | 1204 | |
1205 | | - $result = $sql->selectData( 'registration', NULL, '`sex` = \'d\'', NULL, array( 'count' => 1 ) ); |
1206 | | - $data = $sql->fetchArray( $result ); |
1207 | | - $register_data['total_sex_other'] = $data[0]; |
1208 | | - mysql_free_result( $result ); |
| 1205 | + $result = $sql->selectData( 'registration', NULL, '`sex` = \'d\'', NULL, array( 'count' => 1 ) ); |
| 1206 | + $data = $sql->fetchArray( $result ); |
| 1207 | + $register_data['total_sex_other'] = $data[0]; |
| 1208 | + mysql_free_result( $result ); |
1209 | 1209 | |
1210 | | - $result = $sql->selectData( 'registration', NULL, '`wiki_id` != \'\'', NULL, array( 'count' => 1 ) ); |
1211 | | - $data = $sql->fetchArray( $result ); |
1212 | | - $register_data['total_wikimedians'] = $data['COUNT(*)']; |
1213 | | - mysql_free_result( $result ); |
| 1210 | + $result = $sql->selectData( 'registration', NULL, '`wiki_id` != \'\'', NULL, array( 'count' => 1 ) ); |
| 1211 | + $data = $sql->fetchArray( $result ); |
| 1212 | + $register_data['total_wikimedians'] = $data['COUNT(*)']; |
| 1213 | + mysql_free_result( $result ); |
1214 | 1214 | |
1215 | 1215 | case 'topic': |
1216 | 1216 | |
1217 | | - /* How many people join for 1 day, for 2 days etc. */ |
1218 | | - for ( $i = 1; $i <= 6; $i++ ) { |
1219 | | - $result = $sql->Query( 'SELECT COUNT(*) FROM `registration` WHERE BIT_COUNT(`join_date`) = ' . $i ); |
1220 | | - $data = $sql->fetchArray( $result ); |
| 1217 | + /* How many people join for 1 day, for 2 days etc. */ |
| 1218 | + for ( $i = 1; $i <= 6; $i++ ) { |
| 1219 | + $result = $sql->Query( 'SELECT COUNT(*) FROM `registration` WHERE BIT_COUNT(`join_date`) = ' . $i ); |
| 1220 | + $data = $sql->fetchArray( $result ); |
1221 | 1221 | $register_data['total_' . $i . 'days'] = $data[0]; |
1222 | 1222 | unset( $data ); |
1223 | | - mysql_free_result( $result ); |
1224 | | - } |
| 1223 | + mysql_free_result( $result ); |
| 1224 | + } |
1225 | 1225 | |
1226 | | - /* People per day */ |
1227 | | - for ( $i = 1; $i <= 6; $i++ ) |
1228 | | - { |
1229 | | - $result = $sql->Query( 'SELECT COUNT(*) FROM `registration` WHERE `join_date` LIKE \'%' . $i . '%\'' ); |
1230 | | - $data = $sql->fetchArray( $result ); |
1231 | | - $register_data['total_day' . $i] = $data[0]; |
1232 | | - mysql_free_result( $result ); |
1233 | | - } |
| 1226 | + /* People per day */ |
| 1227 | + for ( $i = 1; $i <= 6; $i++ ) |
| 1228 | + { |
| 1229 | + $result = $sql->Query( 'SELECT COUNT(*) FROM `registration` WHERE `join_date` LIKE \'%' . $i . '%\'' ); |
| 1230 | + $data = $sql->fetchArray( $result ); |
| 1231 | + $register_data['total_day' . $i] = $data[0]; |
| 1232 | + mysql_free_result( $result ); |
| 1233 | + } |
1234 | 1234 | |
1235 | 1235 | case 'accommodation': |
1236 | | - /* How many people stay 0 night, 1 night etc. */ |
1237 | | - for ( $i = 0; $i <= 8; $i++ ) { |
1238 | | - $result = $sql->Query( 'SELECT COUNT(*) FROM `registration` WHERE BIT_COUNT(`nights`) = ' . $i ); |
1239 | | - $data = $sql->fetchArray( $result ); |
| 1236 | + /* How many people stay 0 night, 1 night etc. */ |
| 1237 | + for ( $i = 0; $i <= 8; $i++ ) { |
| 1238 | + $result = $sql->Query( 'SELECT COUNT(*) FROM `registration` WHERE BIT_COUNT(`nights`) = ' . $i ); |
| 1239 | + $data = $sql->fetchArray( $result ); |
1240 | 1240 | $register_data['total_' . $i . 'nights'] = $data[0]; |
1241 | 1241 | unset( $data ); |
1242 | | - mysql_free_result( $result ); |
1243 | | - } |
| 1242 | + mysql_free_result( $result ); |
| 1243 | + } |
1244 | 1244 | |
1245 | 1245 | for ( $i = 1; $i <= 9; $i++ ) { |
1246 | | - $result = $sql->Query( 'SELECT COUNT(*) FROM `registration` WHERE `hotels` = \'' . $i . '\'' ); |
1247 | | - $data = $sql->fetchArray( $result ); |
| 1246 | + $result = $sql->Query( 'SELECT COUNT(*) FROM `registration` WHERE `hotels` = \'' . $i . '\'' ); |
| 1247 | + $data = $sql->fetchArray( $result ); |
1248 | 1248 | $register_data['total_hotel' . $i] = $data[0]; |
1249 | 1249 | unset( $data ); |
1250 | | - mysql_free_result( $result ); |
1251 | | - } |
| 1250 | + mysql_free_result( $result ); |
| 1251 | + } |
1252 | 1252 | |
1253 | | - for ( $i = 1; $i <= 9; $i++ ) { |
| 1253 | + for ( $i = 1; $i <= 9; $i++ ) { |
1254 | 1254 | $result = $sql->Query( 'SELECT COUNT(DISTINCT(`room_number`)) FROM `registration` WHERE `hotels` = \'' . $i . '\' AND `room_number` is not NULL AND `room_number` != \'\'' ); |
1255 | 1255 | $data = $sql->fetchArray( $result ); |
1256 | 1256 | $register_data['rooms_hotel' . $i] = $data[0]; |
1257 | 1257 | mysql_free_result( $result ); |
1258 | | - } |
| 1258 | + } |
1259 | 1259 | |
1260 | 1260 | case 'visa': |
1261 | | - $result = $sql->selectData( 'registration', NULL, '`visa_assistance` = \'1\'' , NULL, array( 'count' => 1 ) ); |
1262 | | - $data = $sql->fetchArray( $result ); |
1263 | | - $register_data['total_assist'] = $data[0]; |
1264 | | - unset( $data ); |
1265 | | - mysql_free_result( $result ); |
| 1261 | + $result = $sql->selectData( 'registration', NULL, '`visa_assistance` = \'1\'' , NULL, array( 'count' => 1 ) ); |
| 1262 | + $data = $sql->fetchArray( $result ); |
| 1263 | + $register_data['total_assist'] = $data[0]; |
| 1264 | + unset( $data ); |
| 1265 | + mysql_free_result( $result ); |
1266 | 1266 | |
1267 | 1267 | } |
1268 | 1268 | /* page process */ |
— | — | @@ -1289,9 +1289,9 @@ |
1290 | 1290 | { |
1291 | 1291 | case 'name': |
1292 | 1292 | $query = '`surname` LIKE \'%' . $keyword_temp . '%\' ' . |
1293 | | - 'OR `given_name` LIKE \'%' . $keyword_temp . '%\' ' . |
| 1293 | + 'OR `given_name` LIKE \'%' . $keyword_temp . '%\' ' . |
1294 | 1294 | 'OR `wiki_id` LIKE \'%' . $keyword_temp . '%\' ' . |
1295 | | - 'OR `custom_showname` LIKE \'%' . $keyword_temp . '%\' '; |
| 1295 | + 'OR `custom_showname` LIKE \'%' . $keyword_temp . '%\' '; |
1296 | 1296 | break; |
1297 | 1297 | |
1298 | 1298 | case 'email': |
— | — | @@ -1491,13 +1491,13 @@ |
1492 | 1492 | $night_selected = $register_data['night1'] + $register_data['night2'] + $register_data['night3'] + $register_data['night4']; |
1493 | 1493 | |
1494 | 1494 | if ( $register_data['hotelname'] == 'metropol' ) |
1495 | | - { $register_data['cost_total'] += $accommodation_cost_metropol * $night_selected; } |
1496 | | - elseif ( $register_data['hotelname'] == 'delta' ) |
1497 | | - { $register_data['cost_total'] += $accommodation_cost_delta * $night_selected; } |
1498 | | - elseif ( $register_data['hotelname'] == 'dorms' ) |
1499 | | - { $register_data['cost_total'] += $accommodation_cost_dorms * $night_selected; } |
1500 | | - else |
1501 | | - { $register_data['cost_total'] += 0; } |
| 1495 | + { $register_data['cost_total'] += $accommodation_cost_metropol * $night_selected; } |
| 1496 | + elseif ( $register_data['hotelname'] == 'delta' ) |
| 1497 | + { $register_data['cost_total'] += $accommodation_cost_delta * $night_selected; } |
| 1498 | + elseif ( $register_data['hotelname'] == 'dorms' ) |
| 1499 | + { $register_data['cost_total'] += $accommodation_cost_dorms * $night_selected; } |
| 1500 | + else |
| 1501 | + { $register_data['cost_total'] += 0; } |
1502 | 1502 | |
1503 | 1503 | } |
1504 | 1504 | elseif ( $MY_REQUEST['coupon_id'] == $coupon_volunteer ) |
— | — | @@ -1508,13 +1508,13 @@ |
1509 | 1509 | $night_selected = $register_data['night1'] + $register_data['night2'] + $register_data['night3'] + $register_data['night4']; |
1510 | 1510 | |
1511 | 1511 | if ( $register_data['hotelname'] == 'metropol' ) |
1512 | | - { $register_data['cost_total'] += $accommodation_cost_metropol * $night_selected; } |
1513 | | - elseif ( $register_data['hotelname'] == 'delta' ) |
1514 | | - { $register_data['cost_total'] += $accommodation_cost_delta * $night_selected; } |
1515 | | - elseif ( $register_data['hotelname'] == 'dorms' ) |
1516 | | - { $register_data['cost_total'] += $accommodation_cost_dorms * $night_selected; } |
1517 | | - else |
1518 | | - { $register_data['cost_total'] += 0; } |
| 1512 | + { $register_data['cost_total'] += $accommodation_cost_metropol * $night_selected; } |
| 1513 | + elseif ( $register_data['hotelname'] == 'delta' ) |
| 1514 | + { $register_data['cost_total'] += $accommodation_cost_delta * $night_selected; } |
| 1515 | + elseif ( $register_data['hotelname'] == 'dorms' ) |
| 1516 | + { $register_data['cost_total'] += $accommodation_cost_dorms * $night_selected; } |
| 1517 | + else |
| 1518 | + { $register_data['cost_total'] += 0; } |
1519 | 1519 | } |
1520 | 1520 | else |
1521 | 1521 | { |