Index: trunk/extensions/CentralNotice/SpecialCentralNotice.php |
— | — | @@ -282,7 +282,7 @@ |
283 | 283 | } |
284 | 284 | |
285 | 285 | /** |
286 | | - * Print out all campaigns found in db |
| 286 | + * Show all campaigns found in the database, show "Add a campaign" form |
287 | 287 | */ |
288 | 288 | function listNotices() { |
289 | 289 | global $wgOut, $wgUser, $wgLang, $wgRequest; |
— | — | @@ -337,8 +337,8 @@ |
338 | 338 | // Table headers |
339 | 339 | $headers = array( |
340 | 340 | wfMsgHtml( 'centralnotice-notice-name' ), |
341 | | - wfMsgHtml( 'centralnotice-project-name' ), |
342 | | - wfMsgHtml( 'centralnotice-project-lang' ), |
| 341 | + wfMsgHtml( 'centralnotice-projects' ), |
| 342 | + wfMsgHtml( 'centralnotice-languages' ), |
343 | 343 | wfMsgHtml( 'centralnotice-start-date' ), |
344 | 344 | wfMsgHtml( 'centralnotice-end-date' ), |
345 | 345 | wfMsgHtml( 'centralnotice-enabled' ), |
— | — | @@ -463,11 +463,11 @@ |
464 | 464 | $startArray['hour'] . |
465 | 465 | $startArray['min'] . '00' |
466 | 466 | ; |
467 | | - $projectSelected = $wgRequest->getVal( 'project_name' ); |
| 467 | + $noticeProjects = $wgRequest->getArray( 'projects', array() ); |
468 | 468 | $noticeLanguages = $wgRequest->getArray( 'project_languages', array() ); |
469 | 469 | } else { // Defaults |
470 | 470 | $startTimestamp = null; |
471 | | - $projectSelected = ''; |
| 471 | + $noticeProjects = array(); |
472 | 472 | $noticeLanguages = array(); |
473 | 473 | } |
474 | 474 | |
— | — | @@ -500,12 +500,14 @@ |
501 | 501 | $htmlOut .= Xml::closeElement( 'tr' ); |
502 | 502 | // Project |
503 | 503 | $htmlOut .= Xml::openElement( 'tr' ); |
504 | | - $htmlOut .= Xml::tags( 'td', array(), wfMsgHtml( 'centralnotice-project-name' ) ); |
505 | | - $htmlOut .= Xml::tags( 'td', array(), $this->projectDropDownList( $projectSelected ) ); |
| 504 | + $htmlOut .= Xml::tags( 'td', array( 'valign' => 'top' ), |
| 505 | + wfMsgHtml( 'centralnotice-projects' ) ); |
| 506 | + $htmlOut .= Xml::tags( 'td', array(), $this->projectMultiSelector( $noticeProjects ) ); |
506 | 507 | $htmlOut .= Xml::closeElement( 'tr' ); |
507 | 508 | // Languages |
508 | 509 | $htmlOut .= Xml::openElement( 'tr' ); |
509 | | - $htmlOut .= Xml::tags( 'td', array( 'valign' => 'top' ), wfMsgHtml( 'yourlanguage' ) ); |
| 510 | + $htmlOut .= Xml::tags( 'td', array( 'valign' => 'top' ), |
| 511 | + wfMsgHtml( 'centralnotice-languages' ) ); |
510 | 512 | $htmlOut .= Xml::tags( 'td', array(), |
511 | 513 | $this->languageMultiSelector( $noticeLanguages ) ); |
512 | 514 | $htmlOut .= Xml::closeElement( 'tr' ); |
— | — | @@ -544,6 +546,10 @@ |
545 | 547 | $wgOut->addHTML( $htmlOut ); |
546 | 548 | } |
547 | 549 | |
| 550 | + /** |
| 551 | + * Show the interface for viewing/editing an individual campaign |
| 552 | + * @param $notice The name of the campaign to view |
| 553 | + */ |
548 | 554 | function listNoticeDetail( $notice ) { |
549 | 555 | global $wgOut, $wgRequest, $wgUser; |
550 | 556 | |
— | — | @@ -827,12 +833,13 @@ |
828 | 834 | $htmlOut .= Xml::closeElement( 'tr' ); |
829 | 835 | // Project |
830 | 836 | $htmlOut .= Xml::openElement( 'tr' ); |
831 | | - $htmlOut .= Xml::tags( 'td', array(), wfMsgHtml( 'centralnotice-project-name' ) ); |
| 837 | + $htmlOut .= Xml::tags( 'td', array(), wfMsgHtml( 'centralnotice-projects' ) ); |
832 | 838 | $htmlOut .= Xml::tags( 'td', array(), $this->projectDropDownList( $projectSelected ) ); |
833 | 839 | $htmlOut .= Xml::closeElement( 'tr' ); |
834 | 840 | // Languages |
835 | 841 | $htmlOut .= Xml::openElement( 'tr' ); |
836 | | - $htmlOut .= Xml::tags( 'td', array( 'valign' => 'top' ), wfMsgHtml( 'yourlanguage' ) ); |
| 842 | + $htmlOut .= Xml::tags( 'td', array( 'valign' => 'top' ), |
| 843 | + wfMsgHtml( 'centralnotice-languages' ) ); |
837 | 844 | $htmlOut .= Xml::tags( 'td', array(), |
838 | 845 | $this->languageMultiSelector( $noticeLanguages ) ); |
839 | 846 | $htmlOut .= Xml::closeElement( 'tr' ); |
— | — | @@ -1484,6 +1491,54 @@ |
1485 | 1492 | return $htmlOut; |
1486 | 1493 | } |
1487 | 1494 | |
| 1495 | + /** |
| 1496 | + * Generates a multiple select list of all project types. |
| 1497 | + * @param $selected The name of the selected project type |
| 1498 | + * @return multiple select list |
| 1499 | + */ |
| 1500 | + function projectMultiSelector( $selected = array() ) { |
| 1501 | + global $wgNoticeProjects, $wgExtensionAssetsPath, $wgLang; |
| 1502 | + $scriptPath = "$wgExtensionAssetsPath/CentralNotice"; |
| 1503 | + |
| 1504 | + $options = "\n"; |
| 1505 | + foreach( $wgNoticeProjects as $project ) { |
| 1506 | + $options .= Xml::option( |
| 1507 | + $project, |
| 1508 | + $project, |
| 1509 | + in_array( $project, $selected ) |
| 1510 | + ) . "\n"; |
| 1511 | + } |
| 1512 | + $htmlOut = ''; |
| 1513 | + if ( $this->editable ) { |
| 1514 | + $htmlOut .= Xml::tags( 'select', |
| 1515 | + array( 'multiple' => 'multiple', 'size' => 4, 'id' => 'projects[]', 'name' => 'projects[]' ), |
| 1516 | + $options |
| 1517 | + ); |
| 1518 | + $buttons = array(); |
| 1519 | + $buttons[] = '<a href="#" onclick="selectProjects(true);return false;">' . |
| 1520 | + wfMsg( 'powersearch-toggleall' ) . '</a>'; |
| 1521 | + $buttons[] = '<a href="#" onclick="selectProjects(false);return false;">' . |
| 1522 | + wfMsg( 'powersearch-togglenone' ) . '</a>'; |
| 1523 | + $htmlOut .= Xml::tags( 'div', |
| 1524 | + array( 'style' => 'margin-top: 0.2em;' ), |
| 1525 | + '<img src="'.$scriptPath.'/up-arrow.png" style="vertical-align:baseline;"/>' . |
| 1526 | + wfMsg( 'centralnotice-select', $wgLang->commaList( $buttons ) ) |
| 1527 | + ); |
| 1528 | + } else { |
| 1529 | + $htmlOut .= Xml::tags( 'select', |
| 1530 | + array( |
| 1531 | + 'multiple' => 'multiple', |
| 1532 | + 'size' => 4, |
| 1533 | + 'id' => 'projects[]', |
| 1534 | + 'name' => 'projects[]', |
| 1535 | + 'disabled' => 'disabled' |
| 1536 | + ), |
| 1537 | + $options |
| 1538 | + ); |
| 1539 | + } |
| 1540 | + return $htmlOut; |
| 1541 | + } |
| 1542 | + |
1488 | 1543 | function getProjectName( $value ) { |
1489 | 1544 | return $value; // @fixme -- use wfMsg() |
1490 | 1545 | } |
Index: trunk/extensions/CentralNotice/CentralNotice.i18n.php |
— | — | @@ -127,7 +127,8 @@ |
128 | 128 | 'centralnotice-allocation' => 'Allocation', |
129 | 129 | 'centralnotice-view-allocation' => 'View banner allocation', |
130 | 130 | 'centralnotice-allocation-instructions' => 'Choose the environment you would like to view banner allocation for:', |
131 | | - 'centralnotice-project-language' => 'Project language', |
| 131 | + 'centralnotice-languages' => 'Languages', |
| 132 | + 'centralnotice-projects' => 'Projects', |
132 | 133 | 'centralnotice-country' => 'Country', |
133 | 134 | 'centralnotice-no-allocation' => 'No banners allocated.', |
134 | 135 | 'centralnotice-allocation-description' => 'Banner allocation for $1.$2 in $3:', |
— | — | @@ -314,7 +315,6 @@ |
315 | 316 | 'centralnotice-countries' => 'Lande', |
316 | 317 | 'centralnotice-allocation' => 'Toekenning', |
317 | 318 | 'centralnotice-view-allocation' => 'Wys baniertoekenning', |
318 | | - 'centralnotice-project-language' => 'Projektaal', |
319 | 319 | 'centralnotice-country' => 'Land', |
320 | 320 | 'centralnotice-no-allocation' => 'Geen baniere toegeken nie.', |
321 | 321 | 'centralnotice-allocation-description' => 'Baniertoekenning vir $1.$2 in $3:', |
— | — | @@ -726,7 +726,6 @@ |
727 | 727 | 'centralnotice-allocation' => 'Урынлашыу', |
728 | 728 | 'centralnotice-view-allocation' => 'Баннерҙарҙың урынлашыуын ҡарау', |
729 | 729 | 'centralnotice-allocation-instructions' => 'Ниндәй өлкә өсөн баннерҙар урынлашыуын ҡарарға теләүегеҙҙе һайлағыҙ:', |
730 | | - 'centralnotice-project-language' => 'Проект теле', |
731 | 730 | 'centralnotice-country' => 'Ил', |
732 | 731 | 'centralnotice-no-allocation' => 'Баннерҙар урынлаштырылмаған', |
733 | 732 | 'centralnotice-allocation-description' => '$1.$2 өсөн $3 эсендә баннерҙар урынлашыуы', |
— | — | @@ -901,7 +900,6 @@ |
902 | 901 | 'centralnotice-allocation' => 'Прызначэньне', |
903 | 902 | 'centralnotice-view-allocation' => 'Паказаць разьмяшчэньне банэра', |
904 | 903 | 'centralnotice-allocation-instructions' => 'Выберыце рэжым, для якога Вы жадаеце праглядзець разьмяшчэньне банэра:', |
905 | | - 'centralnotice-project-language' => 'Мова праекту', |
906 | 904 | 'centralnotice-country' => 'Краіна', |
907 | 905 | 'centralnotice-no-allocation' => 'Няма разьмешчаных банэраў.', |
908 | 906 | 'centralnotice-allocation-description' => 'Разьмяшчэньне банэра для $1.$2 у $3:', |
— | — | @@ -1212,7 +1210,6 @@ |
1213 | 1211 | 'centralnotice-allocation' => 'Skorenn', |
1214 | 1212 | 'centralnotice-view-allocation' => 'Gwelout skorenn ar giton', |
1215 | 1213 | 'centralnotice-allocation-instructions' => "Dibabit an endro e-lec'h m'ho pefe c'hoant da welet skorenn ar giton evit :", |
1216 | | - 'centralnotice-project-language' => 'Yezh ar raktres', |
1217 | 1214 | 'centralnotice-country' => 'Bro', |
1218 | 1215 | 'centralnotice-no-allocation' => 'Giton skorennet ebet.', |
1219 | 1216 | 'centralnotice-allocation-description' => 'Skorenn giton evit $1.$2 e $3 :', |
— | — | @@ -1346,7 +1343,6 @@ |
1347 | 1344 | 'centralnotice-allocation' => 'Raspoređivanje', |
1348 | 1345 | 'centralnotice-view-allocation' => 'Pogledaj dodjelu obavještenja', |
1349 | 1346 | 'centralnotice-allocation-instructions' => 'Odaberi okruženje za koje želite vidjeti dodjelu obavještenja:', |
1350 | | - 'centralnotice-project-language' => 'Jezik projekta', |
1351 | 1347 | 'centralnotice-country' => 'Država', |
1352 | 1348 | 'centralnotice-no-allocation' => 'Nema dodijeljenih obavještenja.', |
1353 | 1349 | 'centralnotice-allocation-description' => 'Dodjela obavještenja za $1.$2 u $3:', |
— | — | @@ -1581,7 +1577,6 @@ |
1582 | 1578 | 'centralnotice-allocation' => 'Přidělení', |
1583 | 1579 | 'centralnotice-view-allocation' => 'Zobrazit přidělení bannerů', |
1584 | 1580 | 'centralnotice-allocation-instructions' => 'Vyberte si prostředí, pro které chcete zobrazit přidělení bannerů:', |
1585 | | - 'centralnotice-project-language' => 'Jazyk projektu', |
1586 | 1581 | 'centralnotice-country' => 'Země', |
1587 | 1582 | 'centralnotice-no-allocation' => 'Žádné bannery nejsou přiděleny.', |
1588 | 1583 | 'centralnotice-allocation-description' => 'Přidělení bannerů na $1.$2 v $3:', |
— | — | @@ -1816,7 +1811,6 @@ |
1817 | 1812 | 'centralnotice-allocation' => 'Anordnung', |
1818 | 1813 | 'centralnotice-view-allocation' => 'Anordnung der Vorlagen ansehen', |
1819 | 1814 | 'centralnotice-allocation-instructions' => 'Die Ausgabeumgebung für die Ansicht der Vorlagenanordnung auswählen:', |
1820 | | - 'centralnotice-project-language' => 'Projektsprache', |
1821 | 1815 | 'centralnotice-country' => 'Land', |
1822 | 1816 | 'centralnotice-no-allocation' => 'Es wurden keine Vorlagen angeordnet.', |
1823 | 1817 | 'centralnotice-allocation-description' => 'Vorlagenanordnung für $1.$2 in $3:', |
— | — | @@ -2272,7 +2266,6 @@ |
2273 | 2267 | 'centralnotice-allocation' => 'Asigno', |
2274 | 2268 | 'centralnotice-view-allocation' => 'Vidi asignon de reklamrubando', |
2275 | 2269 | 'centralnotice-allocation-instructions' => 'Elekti la medion, ke vi volus vidi rubandan asignadon:', |
2276 | | - 'centralnotice-project-language' => 'Lingvo de projekto', |
2277 | 2270 | 'centralnotice-country' => 'Lando', |
2278 | 2271 | 'centralnotice-no-allocation' => 'Neniuj rekamrubandoj estas asignitaj.', |
2279 | 2272 | 'centralnotice-allocation-description' => 'Asignado de reklamrubando por $1.$2 en $3', |
— | — | @@ -2416,7 +2409,6 @@ |
2417 | 2410 | 'centralnotice-allocation' => 'Asignación', |
2418 | 2411 | 'centralnotice-view-allocation' => 'Asignación de visualización de pancarta', |
2419 | 2412 | 'centralnotice-allocation-instructions' => 'Escoje el entorno para en el cual desea ver la asignación de pancartas:', |
2420 | | - 'centralnotice-project-language' => 'Idioma del proyecto', |
2421 | 2413 | 'centralnotice-country' => 'País', |
2422 | 2414 | 'centralnotice-no-allocation' => 'No hay pancartas asignadas.', |
2423 | 2415 | 'centralnotice-allocation-description' => 'Asignación de pancartas para $1.$2 en $3:', |
— | — | @@ -2536,7 +2528,6 @@ |
2537 | 2529 | 'centralnotice-allocation' => 'Ülesseadmine', |
2538 | 2530 | 'centralnotice-view-allocation' => 'Mallide ülesseade vaatamine', |
2539 | 2531 | 'centralnotice-allocation-instructions' => 'Vali avaldamiskeskkond, mille ülesseadet soovid näha:', |
2540 | | - 'centralnotice-project-language' => 'Projekti keel', |
2541 | 2532 | 'centralnotice-country' => 'Riik', |
2542 | 2533 | 'centralnotice-no-allocation' => 'Ühtegi malli pole üles seatud.', |
2543 | 2534 | 'centralnotice-allocation-description' => 'Üles seatud mallid maal koodiga $3 ja saidil $1.$2.', |
— | — | @@ -2606,7 +2597,6 @@ |
2607 | 2598 | 'centralnotice-clone-notice' => 'Txantiloia honen kopia sortu', |
2608 | 2599 | 'centralnotice-clone-name' => 'Izena:', |
2609 | 2600 | 'centralnotice-countries' => 'Herrialdeak', |
2610 | | - 'centralnotice-project-language' => 'Proiektuaren hizkuntza', |
2611 | 2601 | 'centralnotice-country' => 'Herrialdea', |
2612 | 2602 | 'centralnotice-percentage' => 'Ehunekoa', |
2613 | 2603 | ); |
— | — | @@ -2736,7 +2726,6 @@ |
2737 | 2727 | 'centralnotice-allocation' => 'تخصیص', |
2738 | 2728 | 'centralnotice-view-allocation' => 'نمایش تخصیص آگهی', |
2739 | 2729 | 'centralnotice-allocation-instructions' => 'محیطی که میخواهید تخصیص نشان را برایش مشاهده کنید، برگزینید:', |
2740 | | - 'centralnotice-project-language' => 'زبان پروژه', |
2741 | 2730 | 'centralnotice-country' => 'کشور', |
2742 | 2731 | 'centralnotice-no-allocation' => 'هیچ آگهیای اختصاص نیافته است.', |
2743 | 2732 | 'centralnotice-allocation-description' => 'اختصاص آگهی برای $1.$2 در $3:', |
— | — | @@ -2874,7 +2863,6 @@ |
2875 | 2864 | 'centralnotice-allocation' => 'Jakaminen', |
2876 | 2865 | 'centralnotice-view-allocation' => 'Näytä bannerin jakaminen', |
2877 | 2866 | 'centralnotice-allocation-instructions' => 'Valitse ympäristö, jossa haluaisit nähdä bannerin jakamisen:', |
2878 | | - 'centralnotice-project-language' => 'Projektin kieli', |
2879 | 2867 | 'centralnotice-country' => 'Maa', |
2880 | 2868 | 'centralnotice-no-allocation' => 'Ei kohdistettuja bannereita.', |
2881 | 2869 | 'centralnotice-allocation-description' => 'Bannerin kohdistus $1.$2 maassa $3:', |
— | — | @@ -3018,7 +3006,6 @@ |
3019 | 3007 | 'centralnotice-allocation' => 'Allocation', |
3020 | 3008 | 'centralnotice-view-allocation' => 'Voir la disposition de bannière', |
3021 | 3009 | 'centralnotice-allocation-instructions' => 'Choisissez l’environnement pour lequel vous souhaitez afficher la disposition de bannière :', |
3022 | | - 'centralnotice-project-language' => 'Langue du projet', |
3023 | 3010 | 'centralnotice-country' => 'Pays', |
3024 | 3011 | 'centralnotice-no-allocation' => 'Pas de bannières disposées.', |
3025 | 3012 | 'centralnotice-allocation-description' => 'Disposition de bannière pour $1.$2 en $3 :', |
— | — | @@ -3152,7 +3139,6 @@ |
3153 | 3140 | 'centralnotice-allocation' => 'Alocacion', |
3154 | 3141 | 'centralnotice-view-allocation' => 'Vêre l’alocacion de baniére', |
3155 | 3142 | 'centralnotice-allocation-instructions' => 'Chouèsésséd l’enveronance por laquinta vos souhètâd fâre vêre l’alocacion de baniére :', |
3156 | | - 'centralnotice-project-language' => 'Lengoua du projèt', |
3157 | 3143 | 'centralnotice-country' => 'Payis', |
3158 | 3144 | 'centralnotice-no-allocation' => 'Gins de baniére balyê.', |
3159 | 3145 | 'centralnotice-allocation-description' => 'Alocacion de baniére por $1.$2 en $3 :', |
— | — | @@ -3291,7 +3277,6 @@ |
3292 | 3278 | 'centralnotice-allocation' => 'Asignación', |
3293 | 3279 | 'centralnotice-view-allocation' => 'Ollar a asignación do modelo', |
3294 | 3280 | 'centralnotice-allocation-instructions' => 'Escolla o entorno onde desexa mostrar a asignación do modelo:', |
3295 | | - 'centralnotice-project-language' => 'Lingua do proxecto', |
3296 | 3281 | 'centralnotice-country' => 'País', |
3297 | 3282 | 'centralnotice-no-allocation' => 'Non hai asignación de modelos.', |
3298 | 3283 | 'centralnotice-allocation-description' => 'Asignación de modelos de $1.$2 en $3:', |
— | — | @@ -3449,7 +3434,6 @@ |
3450 | 3435 | 'centralnotice-allocation' => 'Zuewysig', |
3451 | 3436 | 'centralnotice-view-allocation' => 'Aaornig vu dr Banner aaluege', |
3452 | 3437 | 'centralnotice-allocation-instructions' => 'D Umgäbig uuswehle, wu d Verteilig vu dr Banner witt aaluege:', |
3453 | | - 'centralnotice-project-language' => 'Projäktsproch', |
3454 | 3438 | 'centralnotice-country' => 'Land', |
3455 | 3439 | 'centralnotice-no-allocation' => 'Kei Banner aagordnet.', |
3456 | 3440 | 'centralnotice-allocation-description' => 'Banneraaornig fir $1.$2 in $3:', |
— | — | @@ -3585,7 +3569,6 @@ |
3586 | 3570 | 'centralnotice-allocation' => 'הקצאה', |
3587 | 3571 | 'centralnotice-view-allocation' => 'צפייה בהקצאת הבאנר', |
3588 | 3572 | 'centralnotice-allocation-instructions' => 'נא לבחור את הסביבה עבורה ברצונך לצפות בהקצאת הבאנר:', |
3589 | | - 'centralnotice-project-language' => 'שפת המיזם', |
3590 | 3573 | 'centralnotice-country' => 'ארץ', |
3591 | 3574 | 'centralnotice-no-allocation' => 'לא הוקצו באנרים', |
3592 | 3575 | 'centralnotice-allocation-description' => 'הקצאת באנר עבור $1.$2 תחת $3:', |
— | — | @@ -3729,7 +3712,6 @@ |
3730 | 3713 | 'centralnotice-allocation' => 'Dodjela', |
3731 | 3714 | 'centralnotice-view-allocation' => 'Prikaži raspodjelu obavijesti', |
3732 | 3715 | 'centralnotice-allocation-instructions' => 'Odaberi okruženje za koje želite vidjeti dodjelu obavijesti:', |
3733 | | - 'centralnotice-project-language' => 'Jezik projekta', |
3734 | 3716 | 'centralnotice-country' => 'Država', |
3735 | 3717 | 'centralnotice-no-allocation' => 'Nema dodijeljenih obavijesti.', |
3736 | 3718 | 'centralnotice-allocation-description' => 'Dodjela obavijesti za $1.$2 u $3:', |
— | — | @@ -3863,7 +3845,6 @@ |
3864 | 3846 | 'centralnotice-allocation' => 'Přidźělenje', |
3865 | 3847 | 'centralnotice-view-allocation' => 'Přidźělenje chorhoje sej wobhladać', |
3866 | 3848 | 'centralnotice-allocation-instructions' => 'Wubjer wokolinu, za kotruž by sej rady přidźělenje chorhoje wobhladał:', |
3867 | | - 'centralnotice-project-language' => 'Projektowa rěč', |
3868 | 3849 | 'centralnotice-country' => 'Kraj', |
3869 | 3850 | 'centralnotice-no-allocation' => 'Žane chorhoje přidźělene', |
3870 | 3851 | 'centralnotice-allocation-description' => 'Přidźělenje chorhoje za $1.$2 w $3:', |
— | — | @@ -3999,7 +3980,6 @@ |
4000 | 3981 | 'centralnotice-allocation' => 'Kiosztás', |
4001 | 3982 | 'centralnotice-view-allocation' => 'Hirdetéskiosztás megtekintése', |
4002 | 3983 | 'centralnotice-allocation-instructions' => 'Válaszd ki azt a környezetet, amihez meg szeretnéd nézni a kiosztott hirdetéseket:', |
4003 | | - 'centralnotice-project-language' => 'A projekt nyelve', |
4004 | 3984 | 'centralnotice-country' => 'Ország', |
4005 | 3985 | 'centralnotice-no-allocation' => 'Nincs kiosztva egyetlen hirdetés sem.', |
4006 | 3986 | 'centralnotice-allocation-description' => 'A(z) $1.$2 számára kiosztott hirdetések a következő helyen: $3', |
— | — | @@ -4133,7 +4113,6 @@ |
4134 | 4114 | 'centralnotice-allocation' => 'Allocation', |
4135 | 4115 | 'centralnotice-view-allocation' => 'Vider allocation de bandieras', |
4136 | 4116 | 'centralnotice-allocation-instructions' => 'Selige le ambiente pro le qual tu vole vider le allocation de bandieras:', |
4137 | | - 'centralnotice-project-language' => 'Lingua del projecto', |
4138 | 4117 | 'centralnotice-country' => 'Pais', |
4139 | 4118 | 'centralnotice-no-allocation' => 'Nulle bandiera allocate.', |
4140 | 4119 | 'centralnotice-allocation-description' => 'Allocation de bandieras pro $1.$2 in $3:', |
— | — | @@ -4271,7 +4250,6 @@ |
4272 | 4251 | 'centralnotice-allocation' => 'Alokasi', |
4273 | 4252 | 'centralnotice-view-allocation' => 'Lihat alokasi pengumuman', |
4274 | 4253 | 'centralnotice-allocation-instructions' => 'Pilih lingkungan yang ingin Anda lihat alokasi pengumumannya:', |
4275 | | - 'centralnotice-project-language' => 'Bahasa proyek', |
4276 | 4254 | 'centralnotice-country' => 'Negara', |
4277 | 4255 | 'centralnotice-no-allocation' => 'Tidak ada pengumuman yang dialokasikan.', |
4278 | 4256 | 'centralnotice-allocation-description' => 'Alokasi pengumuman untuk $1.$2 di $3:', |
— | — | @@ -4440,7 +4418,6 @@ |
4441 | 4419 | 'centralnotice-banner-hidable' => 'Fisso/Nascondibile', |
4442 | 4420 | 'centralnotice-banner-collapsible' => 'Contraibile', |
4443 | 4421 | 'centralnotice-countries' => 'Paesi', |
4444 | | - 'centralnotice-project-language' => 'Lingua progetto', |
4445 | 4422 | 'centralnotice-country' => 'Nazione', |
4446 | 4423 | 'centralnotice-percentage' => 'Percentuale', |
4447 | 4424 | 'centralnotice-documentwrite-error' => 'Non è possibile usare document.write() dentro un banner. |
— | — | @@ -4573,7 +4550,6 @@ |
4574 | 4551 | 'centralnotice-allocation' => '割り当て', |
4575 | 4552 | 'centralnotice-view-allocation' => 'テンプレートの割り当てを表示', |
4576 | 4553 | 'centralnotice-allocation-instructions' => 'テンプレートの割り当てを表示したい環境を選んでください:', |
4577 | | - 'centralnotice-project-language' => 'プロジェクトの言語', |
4578 | 4554 | 'centralnotice-country' => '国', |
4579 | 4555 | 'centralnotice-no-allocation' => 'テンプレートが割り当てられていません。', |
4580 | 4556 | 'centralnotice-allocation-description' => '$3での$1.$2へのテンプレートの割り当て:', |
— | — | @@ -4881,7 +4857,6 @@ |
4882 | 4858 | 'centralnotice-clone-notice' => '이 틀의 사본을 만들기', |
4883 | 4859 | 'centralnotice-clone-name' => '이름:', |
4884 | 4860 | 'centralnotice-preview-all-template-translations' => '템플렛의 모든 번역 미리 보기', |
4885 | | - 'centralnotice-project-language' => '프로젝트 언어', |
4886 | 4861 | 'centralnotice-country' => '국가', |
4887 | 4862 | 'right-centralnotice-admin' => '중앙 공지 관리', |
4888 | 4863 | 'right-centralnotice-translate' => '중앙 공지 번역', |
— | — | @@ -5118,7 +5093,6 @@ |
5119 | 5094 | 'centralnotice-allocation' => 'Dispositioun', |
5120 | 5095 | 'centralnotice-view-allocation' => 'Dispositioun vum Banner weisen', |
5121 | 5096 | 'centralnotice-allocation-instructions' => 'Sicht den Environnement eraus wou Dir wëllt datt de Banner esou soll gesi ginn:', |
5122 | | - 'centralnotice-project-language' => 'Sprooch vum Projet', |
5123 | 5097 | 'centralnotice-country' => 'Land', |
5124 | 5098 | 'centralnotice-no-allocation' => 'Keng Banneren zougedeelt.', |
5125 | 5099 | 'centralnotice-allocation-description' => 'Dispositioun vum Banner fir $1.$2 a(n) $3:', |
— | — | @@ -5264,7 +5238,6 @@ |
5265 | 5239 | 'centralnotice-allocation' => 'Toewiezing', |
5266 | 5240 | 'centralnotice-view-allocation' => 'Betrach vaantoewiezing', |
5267 | 5241 | 'centralnotice-allocation-instructions' => 'Kees de ómgaeving woveur se de vaantoewiezing wils bekieke:', |
5268 | | - 'centralnotice-project-language' => 'Projektaal', |
5269 | 5242 | 'centralnotice-country' => 'Landj', |
5270 | 5243 | 'centralnotice-no-allocation' => 'Geine vaan toegeweze.', |
5271 | 5244 | 'centralnotice-allocation-description' => 'Vaantoewiezing veur $1.$2 in $3:', |
— | — | @@ -5360,7 +5333,6 @@ |
5361 | 5334 | 'centralnotice-banner-anonymous' => 'Anonīmiem lietotājiem', |
5362 | 5335 | 'centralnotice-banner-logged-in' => 'Lietotājiem, kas pieslēgušies', |
5363 | 5336 | 'centralnotice-countries' => 'Valstis', |
5364 | | - 'centralnotice-project-language' => 'Projekta valoda', |
5365 | 5337 | 'centralnotice-country' => 'Valsts', |
5366 | 5338 | ); |
5367 | 5339 | |
— | — | @@ -5548,7 +5520,6 @@ |
5549 | 5521 | 'centralnotice-allocation' => 'Распределба', |
5550 | 5522 | 'centralnotice-view-allocation' => 'Преглед на распределбата на плакати', |
5551 | 5523 | 'centralnotice-allocation-instructions' => 'Одберете во која околина сакате да ја погледате распределбата на плакати:', |
5552 | | - 'centralnotice-project-language' => 'Јазик на проектот', |
5553 | 5524 | 'centralnotice-country' => 'Земја', |
5554 | 5525 | 'centralnotice-no-allocation' => 'Нема распределени плакати', |
5555 | 5526 | 'centralnotice-allocation-description' => 'Распределба на плакати за $1.$2 iво $3:', |
— | — | @@ -5682,7 +5653,6 @@ |
5683 | 5654 | 'centralnotice-allocation' => 'വിന്യാസം', |
5684 | 5655 | 'centralnotice-view-allocation' => 'എഴുത്തുപട്ടയ്ക്ക് അനുവദിച്ചിരിക്കുന്ന സ്ഥാനം കാണുക', |
5685 | 5656 | 'centralnotice-allocation-instructions' => 'എഴുത്തുപട്ട അനുവദിക്കൽ പ്രദർശിപ്പിക്കാനായി താങ്കൾ തിരഞ്ഞെടുക്കുന്ന പരിതസ്ഥിതി:', |
5686 | | - 'centralnotice-project-language' => 'പദ്ധതിയുടെ ഭാഷ', |
5687 | 5657 | 'centralnotice-country' => 'രാജ്യം', |
5688 | 5658 | 'centralnotice-no-allocation' => 'എഴുത്തുപട്ടകൾക്ക് ഇടയനുവദിച്ചിട്ടില്ല.', |
5689 | 5659 | 'centralnotice-allocation-description' => '$1.$2 സംരംഭത്തിൽ അനുവദിച്ചിരിക്കുന്ന എഴുത്തുപട്ട (രാജ്യം: $3):', |
— | — | @@ -6079,7 +6049,6 @@ |
6080 | 6050 | 'centralnotice-allocation' => 'Toewijzing', |
6081 | 6051 | 'centralnotice-view-allocation' => 'Bannertoewijzing bekijken', |
6082 | 6052 | 'centralnotice-allocation-instructions' => 'Kies de omgeving waarvoor u de bannertoewijzing wilt bekijken:', |
6083 | | - 'centralnotice-project-language' => 'Projecttaal', |
6084 | 6053 | 'centralnotice-country' => 'Land', |
6085 | 6054 | 'centralnotice-no-allocation' => 'Geen banners toegewezen.', |
6086 | 6055 | 'centralnotice-allocation-description' => 'Bannertoewijzing voor $1.$2 in $3:', |
— | — | @@ -6170,7 +6139,6 @@ |
6171 | 6140 | 'centralnotice-clone-name' => 'Namn:', |
6172 | 6141 | 'centralnotice-preview-all-template-translations' => 'Førehandsvis alle tilgjengelege omsetjingar av malen', |
6173 | 6142 | 'centralnotice-insert' => 'Sett inn: $1', |
6174 | | - 'centralnotice-project-language' => 'Prosjektspråk', |
6175 | 6143 | 'centralnotice-country' => 'Land', |
6176 | 6144 | 'right-centralnotice-admin' => 'Handtera sentrale merknader', |
6177 | 6145 | 'right-centralnotice-translate' => 'Omsetja sentrale merknader', |
— | — | @@ -6302,7 +6270,6 @@ |
6303 | 6271 | 'centralnotice-allocation' => 'Tildeling', |
6304 | 6272 | 'centralnotice-view-allocation' => 'Vis bannertildeling', |
6305 | 6273 | 'centralnotice-allocation-instructions' => 'Velg miljøet du ønsker å se bannertildelingen for:', |
6306 | | - 'centralnotice-project-language' => 'Prosjektspråk', |
6307 | 6274 | 'centralnotice-country' => 'Land', |
6308 | 6275 | 'centralnotice-no-allocation' => 'Ingen bannere tildelt.', |
6309 | 6276 | 'centralnotice-allocation-description' => 'Bannertildeling for $1.$2 i $3:', |
— | — | @@ -6550,7 +6517,6 @@ |
6551 | 6518 | 'centralnotice-allocation' => 'Przydział', |
6552 | 6519 | 'centralnotice-view-allocation' => 'Zobacz przydziały dla banera', |
6553 | 6520 | 'centralnotice-allocation-instructions' => 'Określ środowisko, w którym chcesz zobaczyć baner', |
6554 | | - 'centralnotice-project-language' => 'Język projektu', |
6555 | 6521 | 'centralnotice-country' => 'Kraj', |
6556 | 6522 | 'centralnotice-no-allocation' => 'Brak przypisanych banerów.', |
6557 | 6523 | 'centralnotice-allocation-description' => 'Przydział banera dla $1.$2 w $3:', |
— | — | @@ -6685,7 +6651,6 @@ |
6686 | 6652 | 'centralnotice-allocation' => 'Alocassion', |
6687 | 6653 | 'centralnotice-view-allocation' => 'Vëdde la disposission dël tilèt', |
6688 | 6654 | 'centralnotice-allocation-instructions' => "Ch'a serna l'ambient për ël qual a-j piaserìa smon-e la disposission ëd tilèt:", |
6689 | | - 'centralnotice-project-language' => 'Lenga dël proget', |
6690 | 6655 | 'centralnotice-country' => 'Nassion', |
6691 | 6656 | 'centralnotice-no-allocation' => 'Gnun tilèt butà.', |
6692 | 6657 | 'centralnotice-allocation-description' => 'Disposission dël tilèt për $1.$2 an $3:', |
— | — | @@ -6742,7 +6707,6 @@ |
6743 | 6708 | 'centralnotice-banner-anonymous' => 'ورکنومي کارنان', |
6744 | 6709 | 'centralnotice-banner-logged-in' => 'ننوتي کارنان', |
6745 | 6710 | 'centralnotice-countries' => 'هيوادونه', |
6746 | | - 'centralnotice-project-language' => 'د پروژې ژبه', |
6747 | 6711 | 'centralnotice-country' => 'هېواد', |
6748 | 6712 | 'centralnotice-percentage' => 'سلنه', |
6749 | 6713 | ); |
— | — | @@ -6870,7 +6834,6 @@ |
6871 | 6835 | 'centralnotice-allocation' => 'Atribuição', |
6872 | 6836 | 'centralnotice-view-allocation' => 'Ver atribuição de modelos', |
6873 | 6837 | 'centralnotice-allocation-instructions' => 'Escolha o ambiente para o qual deseja ver a atribuição de modelos:', |
6874 | | - 'centralnotice-project-language' => 'Língua do projecto', |
6875 | 6838 | 'centralnotice-country' => 'País', |
6876 | 6839 | 'centralnotice-no-allocation' => 'Não há modelos atribuídos.', |
6877 | 6840 | 'centralnotice-allocation-description' => 'Atribuição de modelos para $1.$2 em $3:', |
— | — | @@ -7006,7 +6969,6 @@ |
7007 | 6970 | 'centralnotice-allocation' => 'Atribuição', |
7008 | 6971 | 'centralnotice-view-allocation' => 'Ver atribuição de modelos', |
7009 | 6972 | 'centralnotice-allocation-instructions' => 'Escolha o ambiente para o qual deseja ver a atribuição de modelos:', |
7010 | | - 'centralnotice-project-language' => 'Língua do projeto', |
7011 | 6973 | 'centralnotice-country' => 'País', |
7012 | 6974 | 'centralnotice-no-allocation' => 'Não há modelos atribuídos.', |
7013 | 6975 | 'centralnotice-allocation-description' => 'Atribuição de modelos para $1.$2 em $3:', |
— | — | @@ -7135,7 +7097,6 @@ |
7136 | 7098 | 'centralnotice-banner-hidable' => 'Ranuy/Pakana', |
7137 | 7099 | 'centralnotice-banner-collapsible' => 'Thuñichina', |
7138 | 7100 | 'centralnotice-countries' => 'Mama llaqtakuna', |
7139 | | - 'centralnotice-project-language' => 'Ruraykamaypa rimaynin', |
7140 | 7101 | 'centralnotice-country' => 'Mama llaqta', |
7141 | 7102 | 'right-centralnotice-admin' => 'Chawpi willaykunata kamachiy', |
7142 | 7103 | 'right-centralnotice-translate' => "Chawpi willaykunata t'ikray", |
— | — | @@ -7265,7 +7226,6 @@ |
7266 | 7227 | 'centralnotice-countries' => 'Ţări', |
7267 | 7228 | 'centralnotice-allocation' => 'Alocare', |
7268 | 7229 | 'centralnotice-view-allocation' => 'Vedeți alocarea bannerului', |
7269 | | - 'centralnotice-project-language' => 'Limba proiectului', |
7270 | 7230 | 'centralnotice-country' => 'Ţară', |
7271 | 7231 | 'centralnotice-no-allocation' => 'Niciun banner alocat.', |
7272 | 7232 | 'centralnotice-percentage' => 'Procentaj', |
— | — | @@ -7395,7 +7355,6 @@ |
7396 | 7356 | 'centralnotice-countries' => 'Paìse', |
7397 | 7357 | 'centralnotice-allocation' => 'Allocazione', |
7398 | 7358 | 'centralnotice-view-allocation' => "Visualizze l'assignazione d'u banner", |
7399 | | - 'centralnotice-project-language' => "Lènghe d'u pruggette", |
7400 | 7359 | 'centralnotice-country' => 'Nazione', |
7401 | 7360 | 'centralnotice-no-allocation' => 'Nisciune banner assignate.', |
7402 | 7361 | 'centralnotice-allocation-description' => 'Assignazione de banner pè $1.$2 jndre $3:', |
— | — | @@ -7533,7 +7492,6 @@ |
7534 | 7493 | 'centralnotice-allocation' => 'Распределение', |
7535 | 7494 | 'centralnotice-view-allocation' => 'Просмотр размещения баннеров', |
7536 | 7495 | 'centralnotice-allocation-instructions' => 'Выберите среды, для которых вы хотите просмотреть размещение баннеров:', |
7537 | | - 'centralnotice-project-language' => 'Язык проекта', |
7538 | 7496 | 'centralnotice-country' => 'Страна', |
7539 | 7497 | 'centralnotice-no-allocation' => 'Баннеры не размещены', |
7540 | 7498 | 'centralnotice-allocation-description' => 'Размещение баннеров для $1.$2 в $3:', |
— | — | @@ -7662,7 +7620,6 @@ |
7663 | 7621 | 'centralnotice-allocation' => 'Придїлїня', |
7664 | 7622 | 'centralnotice-view-allocation' => 'Зобразити придїлїня баверів', |
7665 | 7623 | 'centralnotice-allocation-instructions' => 'Выберте собі середовище, про котре хочете указати придїлїня банерів:', |
7666 | | - 'centralnotice-project-language' => 'Язык проєкту', |
7667 | 7624 | 'centralnotice-country' => 'Країна:', |
7668 | 7625 | 'centralnotice-no-allocation' => 'Жадны банеры не суть придїлены.', |
7669 | 7626 | 'centralnotice-allocation-description' => 'Придїлїня банерів на $1.$2 у $3:', |
— | — | @@ -7796,7 +7753,6 @@ |
7797 | 7754 | 'centralnotice-allocation' => 'Тарҕаныыта', |
7798 | 7755 | 'centralnotice-view-allocation' => 'Бааннердар ханна баалларын көрүү', |
7799 | 7756 | 'centralnotice-allocation-instructions' => 'Бааннердар ханна баалларын ханнык эйгэҕэ көрүөххүн баҕараргын тал:', |
7800 | | - 'centralnotice-project-language' => 'Бырайыак тыла', |
7801 | 7757 | 'centralnotice-country' => 'Дойду', |
7802 | 7758 | 'centralnotice-no-allocation' => 'Бааннердар олордуллубатахтар', |
7803 | 7759 | 'centralnotice-allocation-description' => 'Манна анаан $1.$2 бааннердары угуу, $3 иһигэр:', |
— | — | @@ -8012,7 +7968,6 @@ |
8013 | 7969 | 'centralnotice-allocation' => 'Alokácia', |
8014 | 7970 | 'centralnotice-view-allocation' => 'Zobraziť alokáciu oznamu', |
8015 | 7971 | 'centralnotice-allocation-instructions' => 'Vyberte prostredie, pre ktoré chcete zobraziť alokáciu oznamu:', |
8016 | | - 'centralnotice-project-language' => 'Jazyk projektu', |
8017 | 7972 | 'centralnotice-country' => 'Krajina', |
8018 | 7973 | 'centralnotice-no-allocation' => 'Nie sú alokované žiadne oznamy.', |
8019 | 7974 | 'centralnotice-allocation-description' => 'Alokácia oznamu $1.$2 v $3:', |
— | — | @@ -8146,7 +8101,6 @@ |
8147 | 8102 | 'centralnotice-allocation' => 'Dodelitev', |
8148 | 8103 | 'centralnotice-view-allocation' => 'Ogled dodelitve pasic', |
8149 | 8104 | 'centralnotice-allocation-instructions' => 'Izberite okolje, za katero si želite ogledati dodelitve pasic:', |
8150 | | - 'centralnotice-project-language' => 'Jezik projekta', |
8151 | 8105 | 'centralnotice-country' => 'Država', |
8152 | 8106 | 'centralnotice-no-allocation' => 'Nobena pasica ni dodeljena.', |
8153 | 8107 | 'centralnotice-allocation-description' => 'Dodelitev pasice $1.$2 v jeziku $3:', |
— | — | @@ -8523,7 +8477,6 @@ |
8524 | 8478 | 'centralnotice-allocation' => 'Tilldelning', |
8525 | 8479 | 'centralnotice-view-allocation' => 'Visa bannertilldelning', |
8526 | 8480 | 'centralnotice-allocation-instructions' => 'Välj den miljö du vill se banertilldelning för:', |
8527 | | - 'centralnotice-project-language' => 'Projektspråk', |
8528 | 8481 | 'centralnotice-country' => 'Land', |
8529 | 8482 | 'centralnotice-no-allocation' => 'Inga banners tilldelade.', |
8530 | 8483 | 'centralnotice-allocation-description' => 'Bannertilldelning för $1.$2 i $3:', |
— | — | @@ -8593,7 +8546,6 @@ |
8594 | 8547 | 'centralnotice-banner-logged-in' => 'புகுபதிகை செய்த பயனர்கள்', |
8595 | 8548 | 'centralnotice-banner-hidable' => 'நிலையானது/மறைக்கக்கூடியது', |
8596 | 8549 | 'centralnotice-countries' => 'நாடுகள்', |
8597 | | - 'centralnotice-project-language' => 'திட்டத்தின் மொழி', |
8598 | 8550 | 'centralnotice-country' => 'நாடு', |
8599 | 8551 | 'centralnotice-percentage' => 'சதவிகிதம்/விழுக்காடு', |
8600 | 8552 | 'centralnotice-preferred' => 'விரும்பத்தக்கது', |
— | — | @@ -8686,7 +8638,6 @@ |
8687 | 8639 | 'centralnotice-banner-hidable' => 'స్థిరం/దాచదగ్గది', |
8688 | 8640 | 'centralnotice-countries' => 'దేశాలు', |
8689 | 8641 | 'centralnotice-allocation' => 'కేటాయింపు', |
8690 | | - 'centralnotice-project-language' => 'ప్రాజెక్టు భాష', |
8691 | 8642 | 'centralnotice-country' => 'దేశం', |
8692 | 8643 | 'centralnotice-percentage' => 'శాతం', |
8693 | 8644 | 'right-centralnotice-admin' => 'కేంద్రీయ గమనికలని నిర్వహించగలగడం', |
— | — | @@ -9099,7 +9050,6 @@ |
9100 | 9051 | 'centralnotice-countries' => 'Ýurtlar', |
9101 | 9052 | 'centralnotice-allocation' => 'Ýerleşiş', |
9102 | 9053 | 'centralnotice-view-allocation' => 'Bannerleriň ýerleşişini görkez', |
9103 | | - 'centralnotice-project-language' => 'Taslama dili', |
9104 | 9054 | 'centralnotice-country' => 'Ýurt', |
9105 | 9055 | 'centralnotice-no-allocation' => 'Hiç hili banner ýerleşdirilmändir.', |
9106 | 9056 | 'centralnotice-percentage' => 'Göterim', |
— | — | @@ -9230,7 +9180,6 @@ |
9231 | 9181 | 'centralnotice-allocation' => 'Paglalaan', |
9232 | 9182 | 'centralnotice-view-allocation' => 'Tingnan ang kabahagi ng bandera', |
9233 | 9183 | 'centralnotice-allocation-instructions' => 'Piliin ang kapaligirang nais mong tingnan ang kabahagi ng bandera:', |
9234 | | - 'centralnotice-project-language' => 'Wika ng proyekto', |
9235 | 9184 | 'centralnotice-country' => 'Bansa', |
9236 | 9185 | 'centralnotice-no-allocation' => 'Walang bandera ibinahagi.', |
9237 | 9186 | 'centralnotice-allocation-description' => 'Ang banderang kabahagi para sa $1.$2 sa loob ng $3:', |
— | — | @@ -9565,7 +9514,6 @@ |
9566 | 9515 | 'centralnotice-allocation' => 'Розподіл', |
9567 | 9516 | 'centralnotice-view-allocation' => 'Переглянути розміщення банера', |
9568 | 9517 | 'centralnotice-allocation-instructions' => 'Виберіть середовище, для якого ви хочете переглянути розміщення банера:', |
9569 | | - 'centralnotice-project-language' => 'Мова проекту', |
9570 | 9518 | 'centralnotice-country' => 'Країна', |
9571 | 9519 | 'centralnotice-no-allocation' => 'Немає розміщених банерів.', |
9572 | 9520 | 'centralnotice-allocation-description' => 'Розміщення банеру для $1.$2 в $3:', |
— | — | @@ -9699,7 +9647,6 @@ |
9700 | 9648 | 'centralnotice-allocation' => 'Alocassion', |
9701 | 9649 | 'centralnotice-view-allocation' => 'Varda la disposission dei banner', |
9702 | 9650 | 'centralnotice-allocation-instructions' => "Scegli l'ambiente dove te vol vedar la disposission dei banner:", |
9703 | | - 'centralnotice-project-language' => 'Lengoa del projeto', |
9704 | 9651 | 'centralnotice-country' => 'Nassion', |
9705 | 9652 | 'centralnotice-no-allocation' => 'Nissun banner alocà.', |
9706 | 9653 | 'centralnotice-allocation-description' => 'Alocassion dei banner par $1.$2 in $3:', |
— | — | @@ -9822,7 +9769,6 @@ |
9823 | 9770 | 'centralnotice-allocation' => 'Phân bổ', |
9824 | 9771 | 'centralnotice-view-allocation' => 'Xem cách phân phối bảng', |
9825 | 9772 | 'centralnotice-allocation-instructions' => 'Chọn môi trường để xem cách phân phối bảng:', |
9826 | | - 'centralnotice-project-language' => 'Ngôn ngữ dự án', |
9827 | 9773 | 'centralnotice-country' => 'Quốc gia', |
9828 | 9774 | 'centralnotice-no-allocation' => 'Chưa có phân phối bảng nào.', |
9829 | 9775 | 'centralnotice-allocation-description' => 'Phân phối bảng cho $1.$2 tại $3:', |
— | — | @@ -9944,7 +9890,6 @@ |
9945 | 9891 | 'centralnotice-donate-button' => 'Bọ́tìnì ìṣọrẹ', |
9946 | 9892 | 'centralnotice-banner-anonymous' => 'Àwọn oníṣe aláìlórúkọ', |
9947 | 9893 | 'centralnotice-countries' => 'Àwọn orílẹ̀-èdè', |
9948 | | - 'centralnotice-project-language' => 'Èdè iṣẹ́-ọwọ́', |
9949 | 9894 | 'centralnotice-country' => 'Orílẹ̀-èdè', |
9950 | 9895 | ); |
9951 | 9896 | |
— | — | @@ -10079,7 +10024,6 @@ |
10080 | 10025 | 'centralnotice-allocation' => '配额', |
10081 | 10026 | 'centralnotice-view-allocation' => '察看横幅配额', |
10082 | 10027 | 'centralnotice-allocation-instructions' => '选择你想察看横幅配额的环境', |
10083 | | - 'centralnotice-project-language' => '计划语言', |
10084 | 10028 | 'centralnotice-country' => '国家', |
10085 | 10029 | 'centralnotice-no-allocation' => '没有配给横幅', |
10086 | 10030 | 'centralnotice-percentage' => '百分比', |