r76347 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r76346‎ | r76347 | r76348 >
Date:23:02, 8 November 2010
Author:kaldari
Status:ok
Tags:
Comment:
work towards bug 20229
Modified paths:
  • /trunk/extensions/CentralNotice/CentralNotice.i18n.php (modified) (history)
  • /trunk/extensions/CentralNotice/SpecialCentralNotice.php (modified) (history)

Diff [purge]

Index: trunk/extensions/CentralNotice/SpecialCentralNotice.php
@@ -282,7 +282,7 @@
283283 }
284284
285285 /**
286 - * Print out all campaigns found in db
 286+ * Show all campaigns found in the database, show "Add a campaign" form
287287 */
288288 function listNotices() {
289289 global $wgOut, $wgUser, $wgLang, $wgRequest;
@@ -337,8 +337,8 @@
338338 // Table headers
339339 $headers = array(
340340 wfMsgHtml( 'centralnotice-notice-name' ),
341 - wfMsgHtml( 'centralnotice-project-name' ),
342 - wfMsgHtml( 'centralnotice-project-lang' ),
 341+ wfMsgHtml( 'centralnotice-projects' ),
 342+ wfMsgHtml( 'centralnotice-languages' ),
343343 wfMsgHtml( 'centralnotice-start-date' ),
344344 wfMsgHtml( 'centralnotice-end-date' ),
345345 wfMsgHtml( 'centralnotice-enabled' ),
@@ -463,11 +463,11 @@
464464 $startArray['hour'] .
465465 $startArray['min'] . '00'
466466 ;
467 - $projectSelected = $wgRequest->getVal( 'project_name' );
 467+ $noticeProjects = $wgRequest->getArray( 'projects', array() );
468468 $noticeLanguages = $wgRequest->getArray( 'project_languages', array() );
469469 } else { // Defaults
470470 $startTimestamp = null;
471 - $projectSelected = '';
 471+ $noticeProjects = array();
472472 $noticeLanguages = array();
473473 }
474474
@@ -500,12 +500,14 @@
501501 $htmlOut .= Xml::closeElement( 'tr' );
502502 // Project
503503 $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 ) );
506507 $htmlOut .= Xml::closeElement( 'tr' );
507508 // Languages
508509 $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' ) );
510512 $htmlOut .= Xml::tags( 'td', array(),
511513 $this->languageMultiSelector( $noticeLanguages ) );
512514 $htmlOut .= Xml::closeElement( 'tr' );
@@ -544,6 +546,10 @@
545547 $wgOut->addHTML( $htmlOut );
546548 }
547549
 550+ /**
 551+ * Show the interface for viewing/editing an individual campaign
 552+ * @param $notice The name of the campaign to view
 553+ */
548554 function listNoticeDetail( $notice ) {
549555 global $wgOut, $wgRequest, $wgUser;
550556
@@ -827,12 +833,13 @@
828834 $htmlOut .= Xml::closeElement( 'tr' );
829835 // Project
830836 $htmlOut .= Xml::openElement( 'tr' );
831 - $htmlOut .= Xml::tags( 'td', array(), wfMsgHtml( 'centralnotice-project-name' ) );
 837+ $htmlOut .= Xml::tags( 'td', array(), wfMsgHtml( 'centralnotice-projects' ) );
832838 $htmlOut .= Xml::tags( 'td', array(), $this->projectDropDownList( $projectSelected ) );
833839 $htmlOut .= Xml::closeElement( 'tr' );
834840 // Languages
835841 $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' ) );
837844 $htmlOut .= Xml::tags( 'td', array(),
838845 $this->languageMultiSelector( $noticeLanguages ) );
839846 $htmlOut .= Xml::closeElement( 'tr' );
@@ -1484,6 +1491,54 @@
14851492 return $htmlOut;
14861493 }
14871494
 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+
14881543 function getProjectName( $value ) {
14891544 return $value; // @fixme -- use wfMsg()
14901545 }
Index: trunk/extensions/CentralNotice/CentralNotice.i18n.php
@@ -127,7 +127,8 @@
128128 'centralnotice-allocation' => 'Allocation',
129129 'centralnotice-view-allocation' => 'View banner allocation',
130130 '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',
132133 'centralnotice-country' => 'Country',
133134 'centralnotice-no-allocation' => 'No banners allocated.',
134135 'centralnotice-allocation-description' => 'Banner allocation for $1.$2 in $3:',
@@ -314,7 +315,6 @@
315316 'centralnotice-countries' => 'Lande',
316317 'centralnotice-allocation' => 'Toekenning',
317318 'centralnotice-view-allocation' => 'Wys baniertoekenning',
318 - 'centralnotice-project-language' => 'Projektaal',
319319 'centralnotice-country' => 'Land',
320320 'centralnotice-no-allocation' => 'Geen baniere toegeken nie.',
321321 'centralnotice-allocation-description' => 'Baniertoekenning vir $1.$2 in $3:',
@@ -726,7 +726,6 @@
727727 'centralnotice-allocation' => 'Урынлашыу',
728728 'centralnotice-view-allocation' => 'Баннерҙарҙың урынлашыуын ҡарау',
729729 'centralnotice-allocation-instructions' => 'Ниндәй өлкә өсөн баннерҙар урынлашыуын ҡарарға теләүегеҙҙе һайлағыҙ:',
730 - 'centralnotice-project-language' => 'Проект теле',
731730 'centralnotice-country' => 'Ил',
732731 'centralnotice-no-allocation' => 'Баннерҙар урынлаштырылмаған',
733732 'centralnotice-allocation-description' => '$1.$2 өсөн $3 эсендә баннерҙар урынлашыуы',
@@ -901,7 +900,6 @@
902901 'centralnotice-allocation' => 'Прызначэньне',
903902 'centralnotice-view-allocation' => 'Паказаць разьмяшчэньне банэра',
904903 'centralnotice-allocation-instructions' => 'Выберыце рэжым, для якога Вы жадаеце праглядзець разьмяшчэньне банэра:',
905 - 'centralnotice-project-language' => 'Мова праекту',
906904 'centralnotice-country' => 'Краіна',
907905 'centralnotice-no-allocation' => 'Няма разьмешчаных банэраў.',
908906 'centralnotice-allocation-description' => 'Разьмяшчэньне банэра для $1.$2 у $3:',
@@ -1212,7 +1210,6 @@
12131211 'centralnotice-allocation' => 'Skorenn',
12141212 'centralnotice-view-allocation' => 'Gwelout skorenn ar giton',
12151213 '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',
12171214 'centralnotice-country' => 'Bro',
12181215 'centralnotice-no-allocation' => 'Giton skorennet ebet.',
12191216 'centralnotice-allocation-description' => 'Skorenn giton evit $1.$2 e $3 :',
@@ -1346,7 +1343,6 @@
13471344 'centralnotice-allocation' => 'Raspoređivanje',
13481345 'centralnotice-view-allocation' => 'Pogledaj dodjelu obavještenja',
13491346 'centralnotice-allocation-instructions' => 'Odaberi okruženje za koje želite vidjeti dodjelu obavještenja:',
1350 - 'centralnotice-project-language' => 'Jezik projekta',
13511347 'centralnotice-country' => 'Država',
13521348 'centralnotice-no-allocation' => 'Nema dodijeljenih obavještenja.',
13531349 'centralnotice-allocation-description' => 'Dodjela obavještenja za $1.$2 u $3:',
@@ -1581,7 +1577,6 @@
15821578 'centralnotice-allocation' => 'Přidělení',
15831579 'centralnotice-view-allocation' => 'Zobrazit přidělení bannerů',
15841580 'centralnotice-allocation-instructions' => 'Vyberte si prostředí, pro které chcete zobrazit přidělení bannerů:',
1585 - 'centralnotice-project-language' => 'Jazyk projektu',
15861581 'centralnotice-country' => 'Země',
15871582 'centralnotice-no-allocation' => 'Žádné bannery nejsou přiděleny.',
15881583 'centralnotice-allocation-description' => 'Přidělení bannerů na $1.$2 v $3:',
@@ -1816,7 +1811,6 @@
18171812 'centralnotice-allocation' => 'Anordnung',
18181813 'centralnotice-view-allocation' => 'Anordnung der Vorlagen ansehen',
18191814 'centralnotice-allocation-instructions' => 'Die Ausgabeumgebung für die Ansicht der Vorlagenanordnung auswählen:',
1820 - 'centralnotice-project-language' => 'Projektsprache',
18211815 'centralnotice-country' => 'Land',
18221816 'centralnotice-no-allocation' => 'Es wurden keine Vorlagen angeordnet.',
18231817 'centralnotice-allocation-description' => 'Vorlagenanordnung für $1.$2 in $3:',
@@ -2272,7 +2266,6 @@
22732267 'centralnotice-allocation' => 'Asigno',
22742268 'centralnotice-view-allocation' => 'Vidi asignon de reklamrubando',
22752269 'centralnotice-allocation-instructions' => 'Elekti la medion, ke vi volus vidi rubandan asignadon:',
2276 - 'centralnotice-project-language' => 'Lingvo de projekto',
22772270 'centralnotice-country' => 'Lando',
22782271 'centralnotice-no-allocation' => 'Neniuj rekamrubandoj estas asignitaj.',
22792272 'centralnotice-allocation-description' => 'Asignado de reklamrubando por $1.$2 en $3',
@@ -2416,7 +2409,6 @@
24172410 'centralnotice-allocation' => 'Asignación',
24182411 'centralnotice-view-allocation' => 'Asignación de visualización de pancarta',
24192412 'centralnotice-allocation-instructions' => 'Escoje el entorno para en el cual desea ver la asignación de pancartas:',
2420 - 'centralnotice-project-language' => 'Idioma del proyecto',
24212413 'centralnotice-country' => 'País',
24222414 'centralnotice-no-allocation' => 'No hay pancartas asignadas.',
24232415 'centralnotice-allocation-description' => 'Asignación de pancartas para $1.$2 en $3:',
@@ -2536,7 +2528,6 @@
25372529 'centralnotice-allocation' => 'Ülesseadmine',
25382530 'centralnotice-view-allocation' => 'Mallide ülesseade vaatamine',
25392531 'centralnotice-allocation-instructions' => 'Vali avaldamiskeskkond, mille ülesseadet soovid näha:',
2540 - 'centralnotice-project-language' => 'Projekti keel',
25412532 'centralnotice-country' => 'Riik',
25422533 'centralnotice-no-allocation' => 'Ühtegi malli pole üles seatud.',
25432534 'centralnotice-allocation-description' => 'Üles seatud mallid maal koodiga $3 ja saidil $1.$2.',
@@ -2606,7 +2597,6 @@
26072598 'centralnotice-clone-notice' => 'Txantiloia honen kopia sortu',
26082599 'centralnotice-clone-name' => 'Izena:',
26092600 'centralnotice-countries' => 'Herrialdeak',
2610 - 'centralnotice-project-language' => 'Proiektuaren hizkuntza',
26112601 'centralnotice-country' => 'Herrialdea',
26122602 'centralnotice-percentage' => 'Ehunekoa',
26132603 );
@@ -2736,7 +2726,6 @@
27372727 'centralnotice-allocation' => 'تخصیص',
27382728 'centralnotice-view-allocation' => 'نمایش تخصیص آگهی',
27392729 'centralnotice-allocation-instructions' => 'محیطی که می‌خواهید تخصیص نشان را برایش مشاهده کنید، برگزینید:',
2740 - 'centralnotice-project-language' => 'زبان پروژه',
27412730 'centralnotice-country' => 'کشور',
27422731 'centralnotice-no-allocation' => 'هیچ آگهی‌ای اختصاص نیافته است.',
27432732 'centralnotice-allocation-description' => 'اختصاص آگهی برای $1.$2 در $3:',
@@ -2874,7 +2863,6 @@
28752864 'centralnotice-allocation' => 'Jakaminen',
28762865 'centralnotice-view-allocation' => 'Näytä bannerin jakaminen',
28772866 'centralnotice-allocation-instructions' => 'Valitse ympäristö, jossa haluaisit nähdä bannerin jakamisen:',
2878 - 'centralnotice-project-language' => 'Projektin kieli',
28792867 'centralnotice-country' => 'Maa',
28802868 'centralnotice-no-allocation' => 'Ei kohdistettuja bannereita.',
28812869 'centralnotice-allocation-description' => 'Bannerin kohdistus $1.$2 maassa $3:',
@@ -3018,7 +3006,6 @@
30193007 'centralnotice-allocation' => 'Allocation',
30203008 'centralnotice-view-allocation' => 'Voir la disposition de bannière',
30213009 'centralnotice-allocation-instructions' => 'Choisissez l’environnement pour lequel vous souhaitez afficher la disposition de bannière :',
3022 - 'centralnotice-project-language' => 'Langue du projet',
30233010 'centralnotice-country' => 'Pays',
30243011 'centralnotice-no-allocation' => 'Pas de bannières disposées.',
30253012 'centralnotice-allocation-description' => 'Disposition de bannière pour $1.$2 en $3 :',
@@ -3152,7 +3139,6 @@
31533140 'centralnotice-allocation' => 'Alocacion',
31543141 'centralnotice-view-allocation' => 'Vêre l’alocacion de baniére',
31553142 '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',
31573143 'centralnotice-country' => 'Payis',
31583144 'centralnotice-no-allocation' => 'Gins de baniére balyê.',
31593145 'centralnotice-allocation-description' => 'Alocacion de baniére por $1.$2 en $3 :',
@@ -3291,7 +3277,6 @@
32923278 'centralnotice-allocation' => 'Asignación',
32933279 'centralnotice-view-allocation' => 'Ollar a asignación do modelo',
32943280 'centralnotice-allocation-instructions' => 'Escolla o entorno onde desexa mostrar a asignación do modelo:',
3295 - 'centralnotice-project-language' => 'Lingua do proxecto',
32963281 'centralnotice-country' => 'País',
32973282 'centralnotice-no-allocation' => 'Non hai asignación de modelos.',
32983283 'centralnotice-allocation-description' => 'Asignación de modelos de $1.$2 en $3:',
@@ -3449,7 +3434,6 @@
34503435 'centralnotice-allocation' => 'Zuewysig',
34513436 'centralnotice-view-allocation' => 'Aaornig vu dr Banner aaluege',
34523437 'centralnotice-allocation-instructions' => 'D Umgäbig uuswehle, wu d Verteilig vu dr Banner witt aaluege:',
3453 - 'centralnotice-project-language' => 'Projäktsproch',
34543438 'centralnotice-country' => 'Land',
34553439 'centralnotice-no-allocation' => 'Kei Banner aagordnet.',
34563440 'centralnotice-allocation-description' => 'Banneraaornig fir $1.$2 in $3:',
@@ -3585,7 +3569,6 @@
35863570 'centralnotice-allocation' => 'הקצאה',
35873571 'centralnotice-view-allocation' => 'צפייה בהקצאת הבאנר',
35883572 'centralnotice-allocation-instructions' => 'נא לבחור את הסביבה עבורה ברצונך לצפות בהקצאת הבאנר:',
3589 - 'centralnotice-project-language' => 'שפת המיזם',
35903573 'centralnotice-country' => 'ארץ',
35913574 'centralnotice-no-allocation' => 'לא הוקצו באנרים',
35923575 'centralnotice-allocation-description' => 'הקצאת באנר עבור $1.$2 תחת $3:',
@@ -3729,7 +3712,6 @@
37303713 'centralnotice-allocation' => 'Dodjela',
37313714 'centralnotice-view-allocation' => 'Prikaži raspodjelu obavijesti',
37323715 'centralnotice-allocation-instructions' => 'Odaberi okruženje za koje želite vidjeti dodjelu obavijesti:',
3733 - 'centralnotice-project-language' => 'Jezik projekta',
37343716 'centralnotice-country' => 'Država',
37353717 'centralnotice-no-allocation' => 'Nema dodijeljenih obavijesti.',
37363718 'centralnotice-allocation-description' => 'Dodjela obavijesti za $1.$2 u $3:',
@@ -3863,7 +3845,6 @@
38643846 'centralnotice-allocation' => 'Přidźělenje',
38653847 'centralnotice-view-allocation' => 'Přidźělenje chorhoje sej wobhladać',
38663848 'centralnotice-allocation-instructions' => 'Wubjer wokolinu, za kotruž by sej rady přidźělenje chorhoje wobhladał:',
3867 - 'centralnotice-project-language' => 'Projektowa rěč',
38683849 'centralnotice-country' => 'Kraj',
38693850 'centralnotice-no-allocation' => 'Žane chorhoje přidźělene',
38703851 'centralnotice-allocation-description' => 'Přidźělenje chorhoje za $1.$2 w $3:',
@@ -3999,7 +3980,6 @@
40003981 'centralnotice-allocation' => 'Kiosztás',
40013982 'centralnotice-view-allocation' => 'Hirdetéskiosztás megtekintése',
40023983 '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',
40043984 'centralnotice-country' => 'Ország',
40053985 'centralnotice-no-allocation' => 'Nincs kiosztva egyetlen hirdetés sem.',
40063986 'centralnotice-allocation-description' => 'A(z) $1.$2 számára kiosztott hirdetések a következő helyen: $3',
@@ -4133,7 +4113,6 @@
41344114 'centralnotice-allocation' => 'Allocation',
41354115 'centralnotice-view-allocation' => 'Vider allocation de bandieras',
41364116 'centralnotice-allocation-instructions' => 'Selige le ambiente pro le qual tu vole vider le allocation de bandieras:',
4137 - 'centralnotice-project-language' => 'Lingua del projecto',
41384117 'centralnotice-country' => 'Pais',
41394118 'centralnotice-no-allocation' => 'Nulle bandiera allocate.',
41404119 'centralnotice-allocation-description' => 'Allocation de bandieras pro $1.$2 in $3:',
@@ -4271,7 +4250,6 @@
42724251 'centralnotice-allocation' => 'Alokasi',
42734252 'centralnotice-view-allocation' => 'Lihat alokasi pengumuman',
42744253 'centralnotice-allocation-instructions' => 'Pilih lingkungan yang ingin Anda lihat alokasi pengumumannya:',
4275 - 'centralnotice-project-language' => 'Bahasa proyek',
42764254 'centralnotice-country' => 'Negara',
42774255 'centralnotice-no-allocation' => 'Tidak ada pengumuman yang dialokasikan.',
42784256 'centralnotice-allocation-description' => 'Alokasi pengumuman untuk $1.$2 di $3:',
@@ -4440,7 +4418,6 @@
44414419 'centralnotice-banner-hidable' => 'Fisso/Nascondibile',
44424420 'centralnotice-banner-collapsible' => 'Contraibile',
44434421 'centralnotice-countries' => 'Paesi',
4444 - 'centralnotice-project-language' => 'Lingua progetto',
44454422 'centralnotice-country' => 'Nazione',
44464423 'centralnotice-percentage' => 'Percentuale',
44474424 'centralnotice-documentwrite-error' => 'Non è possibile usare document.write() dentro un banner.
@@ -4573,7 +4550,6 @@
45744551 'centralnotice-allocation' => '割り当て',
45754552 'centralnotice-view-allocation' => 'テンプレートの割り当てを表示',
45764553 'centralnotice-allocation-instructions' => 'テンプレートの割り当てを表示したい環境を選んでください:',
4577 - 'centralnotice-project-language' => 'プロジェクトの言語',
45784554 'centralnotice-country' => '国',
45794555 'centralnotice-no-allocation' => 'テンプレートが割り当てられていません。',
45804556 'centralnotice-allocation-description' => '$3での$1.$2へのテンプレートの割り当て:',
@@ -4881,7 +4857,6 @@
48824858 'centralnotice-clone-notice' => '이 틀의 사본을 만들기',
48834859 'centralnotice-clone-name' => '이름:',
48844860 'centralnotice-preview-all-template-translations' => '템플렛의 모든 번역 미리 보기',
4885 - 'centralnotice-project-language' => '프로젝트 언어',
48864861 'centralnotice-country' => '국가',
48874862 'right-centralnotice-admin' => '중앙 공지 관리',
48884863 'right-centralnotice-translate' => '중앙 공지 번역',
@@ -5118,7 +5093,6 @@
51195094 'centralnotice-allocation' => 'Dispositioun',
51205095 'centralnotice-view-allocation' => 'Dispositioun vum Banner weisen',
51215096 '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',
51235097 'centralnotice-country' => 'Land',
51245098 'centralnotice-no-allocation' => 'Keng Banneren zougedeelt.',
51255099 'centralnotice-allocation-description' => 'Dispositioun vum Banner fir $1.$2 a(n) $3:',
@@ -5264,7 +5238,6 @@
52655239 'centralnotice-allocation' => 'Toewiezing',
52665240 'centralnotice-view-allocation' => 'Betrach vaantoewiezing',
52675241 'centralnotice-allocation-instructions' => 'Kees de ómgaeving woveur se de vaantoewiezing wils bekieke:',
5268 - 'centralnotice-project-language' => 'Projektaal',
52695242 'centralnotice-country' => 'Landj',
52705243 'centralnotice-no-allocation' => 'Geine vaan toegeweze.',
52715244 'centralnotice-allocation-description' => 'Vaantoewiezing veur $1.$2 in $3:',
@@ -5360,7 +5333,6 @@
53615334 'centralnotice-banner-anonymous' => 'Anonīmiem lietotājiem',
53625335 'centralnotice-banner-logged-in' => 'Lietotājiem, kas pieslēgušies',
53635336 'centralnotice-countries' => 'Valstis',
5364 - 'centralnotice-project-language' => 'Projekta valoda',
53655337 'centralnotice-country' => 'Valsts',
53665338 );
53675339
@@ -5548,7 +5520,6 @@
55495521 'centralnotice-allocation' => 'Распределба',
55505522 'centralnotice-view-allocation' => 'Преглед на распределбата на плакати',
55515523 'centralnotice-allocation-instructions' => 'Одберете во која околина сакате да ја погледате распределбата на плакати:',
5552 - 'centralnotice-project-language' => 'Јазик на проектот',
55535524 'centralnotice-country' => 'Земја',
55545525 'centralnotice-no-allocation' => 'Нема распределени плакати',
55555526 'centralnotice-allocation-description' => 'Распределба на плакати за $1.$2 iво $3:',
@@ -5682,7 +5653,6 @@
56835654 'centralnotice-allocation' => 'വിന്യാസം',
56845655 'centralnotice-view-allocation' => 'എഴുത്തുപട്ടയ്ക്ക് അനുവദിച്ചിരിക്കുന്ന സ്ഥാനം കാണുക',
56855656 'centralnotice-allocation-instructions' => 'എഴുത്തുപട്ട അനുവദിക്കൽ പ്രദർശിപ്പിക്കാനായി താങ്കൾ തിരഞ്ഞെടുക്കുന്ന പരിതസ്ഥിതി:',
5686 - 'centralnotice-project-language' => 'പദ്ധതിയുടെ ഭാഷ',
56875657 'centralnotice-country' => 'രാജ്യം',
56885658 'centralnotice-no-allocation' => 'എഴുത്തുപട്ടകൾക്ക് ഇടയനുവദിച്ചിട്ടില്ല.',
56895659 'centralnotice-allocation-description' => '$1.$2 സംരംഭത്തിൽ അനുവദിച്ചിരിക്കുന്ന എഴുത്തുപട്ട (രാജ്യം: $3):',
@@ -6079,7 +6049,6 @@
60806050 'centralnotice-allocation' => 'Toewijzing',
60816051 'centralnotice-view-allocation' => 'Bannertoewijzing bekijken',
60826052 'centralnotice-allocation-instructions' => 'Kies de omgeving waarvoor u de bannertoewijzing wilt bekijken:',
6083 - 'centralnotice-project-language' => 'Projecttaal',
60846053 'centralnotice-country' => 'Land',
60856054 'centralnotice-no-allocation' => 'Geen banners toegewezen.',
60866055 'centralnotice-allocation-description' => 'Bannertoewijzing voor $1.$2 in $3:',
@@ -6170,7 +6139,6 @@
61716140 'centralnotice-clone-name' => 'Namn:',
61726141 'centralnotice-preview-all-template-translations' => 'Førehandsvis alle tilgjengelege omsetjingar av malen',
61736142 'centralnotice-insert' => 'Sett inn: $1',
6174 - 'centralnotice-project-language' => 'Prosjektspråk',
61756143 'centralnotice-country' => 'Land',
61766144 'right-centralnotice-admin' => 'Handtera sentrale merknader',
61776145 'right-centralnotice-translate' => 'Omsetja sentrale merknader',
@@ -6302,7 +6270,6 @@
63036271 'centralnotice-allocation' => 'Tildeling',
63046272 'centralnotice-view-allocation' => 'Vis bannertildeling',
63056273 'centralnotice-allocation-instructions' => 'Velg miljøet du ønsker å se bannertildelingen for:',
6306 - 'centralnotice-project-language' => 'Prosjektspråk',
63076274 'centralnotice-country' => 'Land',
63086275 'centralnotice-no-allocation' => 'Ingen bannere tildelt.',
63096276 'centralnotice-allocation-description' => 'Bannertildeling for $1.$2 i $3:',
@@ -6550,7 +6517,6 @@
65516518 'centralnotice-allocation' => 'Przydział',
65526519 'centralnotice-view-allocation' => 'Zobacz przydziały dla banera',
65536520 'centralnotice-allocation-instructions' => 'Określ środowisko, w którym chcesz zobaczyć baner',
6554 - 'centralnotice-project-language' => 'Język projektu',
65556521 'centralnotice-country' => 'Kraj',
65566522 'centralnotice-no-allocation' => 'Brak przypisanych banerów.',
65576523 'centralnotice-allocation-description' => 'Przydział banera dla $1.$2 w $3:',
@@ -6685,7 +6651,6 @@
66866652 'centralnotice-allocation' => 'Alocassion',
66876653 'centralnotice-view-allocation' => 'Vëdde la disposission dël tilèt',
66886654 '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',
66906655 'centralnotice-country' => 'Nassion',
66916656 'centralnotice-no-allocation' => 'Gnun tilèt butà.',
66926657 'centralnotice-allocation-description' => 'Disposission dël tilèt për $1.$2 an $3:',
@@ -6742,7 +6707,6 @@
67436708 'centralnotice-banner-anonymous' => 'ورکنومي کارنان',
67446709 'centralnotice-banner-logged-in' => 'ننوتي کارنان',
67456710 'centralnotice-countries' => 'هيوادونه',
6746 - 'centralnotice-project-language' => 'د پروژې ژبه',
67476711 'centralnotice-country' => 'هېواد',
67486712 'centralnotice-percentage' => 'سلنه',
67496713 );
@@ -6870,7 +6834,6 @@
68716835 'centralnotice-allocation' => 'Atribuição',
68726836 'centralnotice-view-allocation' => 'Ver atribuição de modelos',
68736837 'centralnotice-allocation-instructions' => 'Escolha o ambiente para o qual deseja ver a atribuição de modelos:',
6874 - 'centralnotice-project-language' => 'Língua do projecto',
68756838 'centralnotice-country' => 'País',
68766839 'centralnotice-no-allocation' => 'Não há modelos atribuídos.',
68776840 'centralnotice-allocation-description' => 'Atribuição de modelos para $1.$2 em $3:',
@@ -7006,7 +6969,6 @@
70076970 'centralnotice-allocation' => 'Atribuição',
70086971 'centralnotice-view-allocation' => 'Ver atribuição de modelos',
70096972 'centralnotice-allocation-instructions' => 'Escolha o ambiente para o qual deseja ver a atribuição de modelos:',
7010 - 'centralnotice-project-language' => 'Língua do projeto',
70116973 'centralnotice-country' => 'País',
70126974 'centralnotice-no-allocation' => 'Não há modelos atribuídos.',
70136975 'centralnotice-allocation-description' => 'Atribuição de modelos para $1.$2 em $3:',
@@ -7135,7 +7097,6 @@
71367098 'centralnotice-banner-hidable' => 'Ranuy/Pakana',
71377099 'centralnotice-banner-collapsible' => 'Thuñichina',
71387100 'centralnotice-countries' => 'Mama llaqtakuna',
7139 - 'centralnotice-project-language' => 'Ruraykamaypa rimaynin',
71407101 'centralnotice-country' => 'Mama llaqta',
71417102 'right-centralnotice-admin' => 'Chawpi willaykunata kamachiy',
71427103 'right-centralnotice-translate' => "Chawpi willaykunata t'ikray",
@@ -7265,7 +7226,6 @@
72667227 'centralnotice-countries' => 'Ţări',
72677228 'centralnotice-allocation' => 'Alocare',
72687229 'centralnotice-view-allocation' => 'Vedeți alocarea bannerului',
7269 - 'centralnotice-project-language' => 'Limba proiectului',
72707230 'centralnotice-country' => 'Ţară',
72717231 'centralnotice-no-allocation' => 'Niciun banner alocat.',
72727232 'centralnotice-percentage' => 'Procentaj',
@@ -7395,7 +7355,6 @@
73967356 'centralnotice-countries' => 'Paìse',
73977357 'centralnotice-allocation' => 'Allocazione',
73987358 'centralnotice-view-allocation' => "Visualizze l'assignazione d'u banner",
7399 - 'centralnotice-project-language' => "Lènghe d'u pruggette",
74007359 'centralnotice-country' => 'Nazione',
74017360 'centralnotice-no-allocation' => 'Nisciune banner assignate.',
74027361 'centralnotice-allocation-description' => 'Assignazione de banner pè $1.$2 jndre $3:',
@@ -7533,7 +7492,6 @@
75347493 'centralnotice-allocation' => 'Распределение',
75357494 'centralnotice-view-allocation' => 'Просмотр размещения баннеров',
75367495 'centralnotice-allocation-instructions' => 'Выберите среды, для которых вы хотите просмотреть размещение баннеров:',
7537 - 'centralnotice-project-language' => 'Язык проекта',
75387496 'centralnotice-country' => 'Страна',
75397497 'centralnotice-no-allocation' => 'Баннеры не размещены',
75407498 'centralnotice-allocation-description' => 'Размещение баннеров для $1.$2 в $3:',
@@ -7662,7 +7620,6 @@
76637621 'centralnotice-allocation' => 'Придїлїня',
76647622 'centralnotice-view-allocation' => 'Зобразити придїлїня баверів',
76657623 'centralnotice-allocation-instructions' => 'Выберте собі середовище, про котре хочете указати придїлїня банерів:',
7666 - 'centralnotice-project-language' => 'Язык проєкту',
76677624 'centralnotice-country' => 'Країна:',
76687625 'centralnotice-no-allocation' => 'Жадны банеры не суть придїлены.',
76697626 'centralnotice-allocation-description' => 'Придїлїня банерів на $1.$2 у $3:',
@@ -7796,7 +7753,6 @@
77977754 'centralnotice-allocation' => 'Тарҕаныыта',
77987755 'centralnotice-view-allocation' => 'Бааннердар ханна баалларын көрүү',
77997756 'centralnotice-allocation-instructions' => 'Бааннердар ханна баалларын ханнык эйгэҕэ көрүөххүн баҕараргын тал:',
7800 - 'centralnotice-project-language' => 'Бырайыак тыла',
78017757 'centralnotice-country' => 'Дойду',
78027758 'centralnotice-no-allocation' => 'Бааннердар олордуллубатахтар',
78037759 'centralnotice-allocation-description' => 'Манна анаан $1.$2 бааннердары угуу, $3 иһигэр:',
@@ -8012,7 +7968,6 @@
80137969 'centralnotice-allocation' => 'Alokácia',
80147970 'centralnotice-view-allocation' => 'Zobraziť alokáciu oznamu',
80157971 'centralnotice-allocation-instructions' => 'Vyberte prostredie, pre ktoré chcete zobraziť alokáciu oznamu:',
8016 - 'centralnotice-project-language' => 'Jazyk projektu',
80177972 'centralnotice-country' => 'Krajina',
80187973 'centralnotice-no-allocation' => 'Nie sú alokované žiadne oznamy.',
80197974 'centralnotice-allocation-description' => 'Alokácia oznamu $1.$2 v $3:',
@@ -8146,7 +8101,6 @@
81478102 'centralnotice-allocation' => 'Dodelitev',
81488103 'centralnotice-view-allocation' => 'Ogled dodelitve pasic',
81498104 'centralnotice-allocation-instructions' => 'Izberite okolje, za katero si želite ogledati dodelitve pasic:',
8150 - 'centralnotice-project-language' => 'Jezik projekta',
81518105 'centralnotice-country' => 'Država',
81528106 'centralnotice-no-allocation' => 'Nobena pasica ni dodeljena.',
81538107 'centralnotice-allocation-description' => 'Dodelitev pasice $1.$2 v jeziku $3:',
@@ -8523,7 +8477,6 @@
85248478 'centralnotice-allocation' => 'Tilldelning',
85258479 'centralnotice-view-allocation' => 'Visa bannertilldelning',
85268480 'centralnotice-allocation-instructions' => 'Välj den miljö du vill se banertilldelning för:',
8527 - 'centralnotice-project-language' => 'Projektspråk',
85288481 'centralnotice-country' => 'Land',
85298482 'centralnotice-no-allocation' => 'Inga banners tilldelade.',
85308483 'centralnotice-allocation-description' => 'Bannertilldelning för $1.$2 i $3:',
@@ -8593,7 +8546,6 @@
85948547 'centralnotice-banner-logged-in' => 'புகுபதிகை செய்த பயனர்கள்',
85958548 'centralnotice-banner-hidable' => 'நிலையானது/மறைக்கக்கூடியது',
85968549 'centralnotice-countries' => 'நாடுகள்',
8597 - 'centralnotice-project-language' => 'திட்டத்தின் மொழி',
85988550 'centralnotice-country' => 'நாடு',
85998551 'centralnotice-percentage' => 'சதவிகிதம்/விழுக்காடு',
86008552 'centralnotice-preferred' => 'விரும்பத்தக்கது',
@@ -8686,7 +8638,6 @@
86878639 'centralnotice-banner-hidable' => 'స్థిరం/దాచదగ్గది',
86888640 'centralnotice-countries' => 'దేశాలు',
86898641 'centralnotice-allocation' => 'కేటాయింపు',
8690 - 'centralnotice-project-language' => 'ప్రాజెక్టు భాష',
86918642 'centralnotice-country' => 'దేశం',
86928643 'centralnotice-percentage' => 'శాతం',
86938644 'right-centralnotice-admin' => 'కేంద్రీయ గమనికలని నిర్వహించగలగడం',
@@ -9099,7 +9050,6 @@
91009051 'centralnotice-countries' => 'Ýurtlar',
91019052 'centralnotice-allocation' => 'Ýerleşiş',
91029053 'centralnotice-view-allocation' => 'Bannerleriň ýerleşişini görkez',
9103 - 'centralnotice-project-language' => 'Taslama dili',
91049054 'centralnotice-country' => 'Ýurt',
91059055 'centralnotice-no-allocation' => 'Hiç hili banner ýerleşdirilmändir.',
91069056 'centralnotice-percentage' => 'Göterim',
@@ -9230,7 +9180,6 @@
92319181 'centralnotice-allocation' => 'Paglalaan',
92329182 'centralnotice-view-allocation' => 'Tingnan ang kabahagi ng bandera',
92339183 'centralnotice-allocation-instructions' => 'Piliin ang kapaligirang nais mong tingnan ang kabahagi ng bandera:',
9234 - 'centralnotice-project-language' => 'Wika ng proyekto',
92359184 'centralnotice-country' => 'Bansa',
92369185 'centralnotice-no-allocation' => 'Walang bandera ibinahagi.',
92379186 'centralnotice-allocation-description' => 'Ang banderang kabahagi para sa $1.$2 sa loob ng $3:',
@@ -9565,7 +9514,6 @@
95669515 'centralnotice-allocation' => 'Розподіл',
95679516 'centralnotice-view-allocation' => 'Переглянути розміщення банера',
95689517 'centralnotice-allocation-instructions' => 'Виберіть середовище, для якого ви хочете переглянути розміщення банера:',
9569 - 'centralnotice-project-language' => 'Мова проекту',
95709518 'centralnotice-country' => 'Країна',
95719519 'centralnotice-no-allocation' => 'Немає розміщених банерів.',
95729520 'centralnotice-allocation-description' => 'Розміщення банеру для $1.$2 в $3:',
@@ -9699,7 +9647,6 @@
97009648 'centralnotice-allocation' => 'Alocassion',
97019649 'centralnotice-view-allocation' => 'Varda la disposission dei banner',
97029650 'centralnotice-allocation-instructions' => "Scegli l'ambiente dove te vol vedar la disposission dei banner:",
9703 - 'centralnotice-project-language' => 'Lengoa del projeto',
97049651 'centralnotice-country' => 'Nassion',
97059652 'centralnotice-no-allocation' => 'Nissun banner alocà.',
97069653 'centralnotice-allocation-description' => 'Alocassion dei banner par $1.$2 in $3:',
@@ -9822,7 +9769,6 @@
98239770 'centralnotice-allocation' => 'Phân bổ',
98249771 'centralnotice-view-allocation' => 'Xem cách phân phối bảng',
98259772 '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',
98279773 'centralnotice-country' => 'Quốc gia',
98289774 'centralnotice-no-allocation' => 'Chưa có phân phối bảng nào.',
98299775 'centralnotice-allocation-description' => 'Phân phối bảng cho $1.$2 tại $3:',
@@ -9944,7 +9890,6 @@
99459891 'centralnotice-donate-button' => 'Bọ́tìnì ìṣọrẹ',
99469892 'centralnotice-banner-anonymous' => 'Àwọn oníṣe aláìlórúkọ',
99479893 'centralnotice-countries' => 'Àwọn orílẹ̀-èdè',
9948 - 'centralnotice-project-language' => 'Èdè iṣẹ́-ọwọ́',
99499894 'centralnotice-country' => 'Orílẹ̀-èdè',
99509895 );
99519896
@@ -10079,7 +10024,6 @@
1008010025 'centralnotice-allocation' => '配额',
1008110026 'centralnotice-view-allocation' => '察看横幅配额',
1008210027 'centralnotice-allocation-instructions' => '选择你想察看横幅配额的环境',
10083 - 'centralnotice-project-language' => '计划语言',
1008410028 'centralnotice-country' => '国家',
1008510029 'centralnotice-no-allocation' => '没有配给横幅',
1008610030 'centralnotice-percentage' => '百分比',

Follow-up revisions

RevisionCommit summaryAuthorDate
r76351more work towards multi-project selection - bug 20229kaldari23:29, 8 November 2010
r76356more work towards multi-project selection - bug 20229kaldari23:57, 8 November 2010
r76358more work towards multi-project selection - bug 20229kaldari00:08, 9 November 2010
r76361finishing work towards multi-project selection - bug 20229kaldari00:39, 9 November 2010

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r68666updating mySQL set-up script for multi-language support (bug 20229), deleting...kaldari17:01, 28 June 2010

Status & tagging log