Index: branches/wmf/1.16wmf4/extensions/CentralNotice/SpecialHideBanners.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | } |
7 | 7 | |
8 | 8 | /** |
9 | | - * Unlisted Special Page to set cookies for hiding banners across all wikis. |
| 9 | + * Unlisted Special Page which sets a cookie for hiding banners across all languages of a project. |
10 | 10 | */ |
11 | 11 | class SpecialHideBanners extends UnlistedSpecialPage { |
12 | 12 | function __construct() { |
— | — | @@ -13,8 +13,8 @@ |
14 | 14 | } |
15 | 15 | |
16 | 16 | function execute( $par ) { |
17 | | - global $wgAllowHideBanners, $wgRequest, $wgOut; |
18 | | - |
| 17 | + global $wgOut; |
| 18 | + |
19 | 19 | $this->setHideCookie(); |
20 | 20 | |
21 | 21 | $wgOut->disable(); |
— | — | @@ -27,9 +27,14 @@ |
28 | 28 | } |
29 | 29 | |
30 | 30 | function setHideCookie() { |
31 | | - global $wgCentralAuthCookieDomain, $wgCookieSecure, $wgCookieHttpOnly; |
| 31 | + global $wgNoticeCookieDomain, $wgCookieSecure; |
32 | 32 | $exp = time() + 86400 * 14; // Cookie expires after 2 weeks |
| 33 | + if ( is_callable( 'CentralAuthUser', 'getCookieDomain' ) ) { |
| 34 | + $cookieDomain = CentralAuthUser::getCookieDomain(); |
| 35 | + } else { |
| 36 | + $cookieDomain = $wgNoticeCookieDomain; |
| 37 | + } |
33 | 38 | // Hide banners for this domain |
34 | | - setcookie( 'hidesnmessage', '1', $exp, '/', $wgCentralAuthCookieDomain, $wgCookieSecure, $wgCookieHttpOnly ); |
| 39 | + setcookie( 'hidesnmessage', '1', $exp, '/', $cookieDomain, $wgCookieSecure ); |
35 | 40 | } |
36 | 41 | } |
Index: branches/wmf/1.16wmf4/extensions/CentralNotice/CentralNotice.php |
— | — | @@ -61,13 +61,8 @@ |
62 | 62 | |
63 | 63 | // Domain to set global cookies for. |
64 | 64 | // Example: '.wikipedia.org' |
65 | | -// This setting is currently shared with CentralAuth extension. |
66 | | -$wgCentralAuthCookieDomain = ''; |
| 65 | +$wgNoticeCookieDomain = ''; |
67 | 66 | |
68 | | -// Enable HideBanners Special Page |
69 | | -// Set to true on wikis with donation thank you pages. |
70 | | -$wgAllowHideBanners = false; |
71 | | - |
72 | 67 | $wgExtensionFunctions[] = 'efCentralNoticeSetup'; |
73 | 68 | |
74 | 69 | $wgExtensionCredits['other'][] = array( |
Index: branches/wmf/1.16wmf4/extensions/CentralNotice/CentralNotice.i18n.php |
— | — | @@ -1231,9 +1231,9 @@ |
1232 | 1232 | 'centralnotice-clone-name' => 'Anv :', |
1233 | 1233 | 'centralnotice-preview-all-template-translations' => 'Rakwellit an holl droidigezhioù a zo evit ar patrom-mañ', |
1234 | 1234 | 'centralnotice-insert' => "Ensoc'hañ : $1", |
1235 | | - 'centralnotice-hide-button' => 'Liamm {{int:centralnotice-shared-hide}}', |
1236 | | - 'centralnotice-collapse-button' => 'Liamm {{int:centralnotice-shared-collapse}}', |
1237 | | - 'centralnotice-expand-button' => 'Liamm {{int:centralnotice-shared-expand}}', |
| 1235 | + 'centralnotice-hide-button' => 'Kuzhat al liamm', |
| 1236 | + 'centralnotice-collapse-button' => 'Digreskiñ al liamm', |
| 1237 | + 'centralnotice-expand-button' => 'Displegañ al liamm', |
1238 | 1238 | 'centralnotice-close-button' => 'Serriñ ar bouton', |
1239 | 1239 | 'centralnotice-translate-button' => 'Liamm da sikour treiñ', |
1240 | 1240 | 'centralnotice-donate-button' => 'Bouton donezonoù', |
— | — | @@ -4335,7 +4335,7 @@ |
4336 | 4336 | 'centralnotice-clone' => 'Clonar', |
4337 | 4337 | 'centralnotice-clone-notice' => 'Crear un copia del bandiera', |
4338 | 4338 | 'centralnotice-clone-name' => 'Nomine:', |
4339 | | - 'centralnotice-preview-all-template-translations' => 'Previsualiar tote le traductiones disponibile del bandiera', |
| 4339 | + 'centralnotice-preview-all-template-translations' => 'Previsualisar tote le traductiones disponibile del bandiera', |
4340 | 4340 | 'centralnotice-insert' => 'Inserer: $1', |
4341 | 4341 | 'centralnotice-hide-button' => 'Celar ligamine', |
4342 | 4342 | 'centralnotice-collapse-button' => 'Plicar ligamine', |
— | — | @@ -4918,7 +4918,11 @@ |
4919 | 4919 | * @author გიორგიმელა |
4920 | 4920 | */ |
4921 | 4921 | $messages['ka'] = array( |
| 4922 | + 'centralnotice' => 'ცენტრალური შეტყობინების ადმინი', |
4922 | 4923 | 'noticetemplate' => 'ცენტრალური შეტყობინების ადმინი', |
| 4924 | + 'bannerallocation' => 'ცენტრალური შეტყობინების ადმინი', |
| 4925 | + 'right-centralnotice-admin' => 'ცენტრალური შეტყობინებების მართვა', |
| 4926 | + 'action-centralnotice-admin' => 'ცენტრალური შეტყობინებების მართვა', |
4923 | 4927 | 'centralnotice-query' => 'მოქმედი შეტყობინების შეცვლა', |
4924 | 4928 | 'centralnotice-notice-name' => 'შეტყობინების სახელი', |
4925 | 4929 | 'centralnotice-end-date' => 'დასრულების თარიღი', |
— | — | @@ -4954,8 +4958,13 @@ |
4955 | 4959 | 'centralnotice-notices' => 'შეტყობინებები', |
4956 | 4960 | 'centralnotice-notice-exists' => 'შენიშვნა უკვე არსებობს. |
4957 | 4961 | არ დაამატოთ', |
| 4962 | + 'centralnotice-no-language' => 'შეტყობინებისათვის არაა არჩეული ენა. ამიტომ ის არ დამატებულა.', |
| 4963 | + 'centralnotice-no-project' => 'პროექტისათვის არჩეული არაა კამპანია. ამიტომ ის არ დამატებულა.', |
4958 | 4964 | 'centralnotice-template-exists' => 'თარგი უკვე არსებობს. არ დაამატოთ', |
4959 | 4965 | 'centralnotice-notice-doesnt-exist' => 'შეტყობინება არ არსებობს.', |
| 4966 | + 'centralnotice-remove-notice-doesnt-exist' => 'შეტყობინება არ არსებობს. |
| 4967 | +არაფერია წასაშლელი.', |
| 4968 | + 'centralnotice-banner-doesnt-exist' => 'თარგი არ არსებობს', |
4960 | 4969 | 'centralnotice-template-body' => 'თარგის სხეული:', |
4961 | 4970 | 'centralnotice-day' => 'დღე', |
4962 | 4971 | 'centralnotice-year' => 'წელი', |
— | — | @@ -4985,12 +4994,18 @@ |
4986 | 4995 | 'centralnotice-insert' => 'ჩასვით: $1', |
4987 | 4996 | 'centralnotice-hide-button' => 'ბმულის დამალვა', |
4988 | 4997 | 'centralnotice-close-button' => 'დახურვის ღილაკი', |
| 4998 | + 'centralnotice-donate-button' => 'შემოწირულობების ღილაკი', |
4989 | 4999 | 'centralnotice-banner-anonymous' => 'ანონიმური მომხმარებლები', |
4990 | 5000 | 'centralnotice-banner-type' => 'ბანერის ტიპი:', |
| 5001 | + 'centralnotice-banner-collapsible' => 'დასაკეცი', |
| 5002 | + 'centralnotice-geotargeted' => 'გეო-მიზნობრივი', |
4991 | 5003 | 'centralnotice-countries' => 'ქვეყნები', |
| 5004 | + 'centralnotice-allocation' => 'განაწილება', |
| 5005 | + 'centralnotice-view-allocation' => 'თარგების განაწილების ხილვა', |
4992 | 5006 | 'centralnotice-languages' => 'ენები', |
4993 | 5007 | 'centralnotice-projects' => 'პროექტები', |
4994 | 5008 | 'centralnotice-country' => 'ქვეყანა', |
| 5009 | + 'centralnotice-percentage' => 'პროცენტი', |
4995 | 5010 | ); |
4996 | 5011 | |
4997 | 5012 | /** Khmer (ភាសាខ្មែរ) |
— | — | @@ -7049,6 +7064,7 @@ |
7050 | 7065 | * @author Crazymadlover |
7051 | 7066 | * @author Giro720 |
7052 | 7067 | * @author Hamilton Abreu |
| 7068 | + * @author Lijealso |
7053 | 7069 | * @author Malafaya |
7054 | 7070 | */ |
7055 | 7071 | $messages['pt'] = array( |
— | — | @@ -7153,9 +7169,9 @@ |
7154 | 7170 | 'centralnotice-clone-name' => 'Nome:', |
7155 | 7171 | 'centralnotice-preview-all-template-translations' => 'Antever todas as traduções disponíveis do modelo', |
7156 | 7172 | 'centralnotice-insert' => 'Inserir: $1', |
7157 | | - 'centralnotice-hide-button' => '{{int:centralnotice-shared-hide}} link', |
7158 | | - 'centralnotice-collapse-button' => '{{int:centralnotice-shared-collapse}} link', |
7159 | | - 'centralnotice-expand-button' => '{{int:centralnotice-shared-expand}} link', |
| 7173 | + 'centralnotice-hide-button' => '{{int:centralnotice-shared-hide}} ocultar', |
| 7174 | + 'centralnotice-collapse-button' => '{{int:centralnotice-shared-collapse}} recolher', |
| 7175 | + 'centralnotice-expand-button' => '{{int:centralnotice-shared-expand}} expandir', |
7160 | 7176 | 'centralnotice-close-button' => 'Botão Fechar', |
7161 | 7177 | 'centralnotice-translate-button' => 'Ajudar a traduzir link', |
7162 | 7178 | 'centralnotice-donate-button' => 'Botão Donativo', |
— | — | @@ -7291,9 +7307,9 @@ |
7292 | 7308 | 'centralnotice-clone-name' => 'Nome:', |
7293 | 7309 | 'centralnotice-preview-all-template-translations' => 'Prever todas as traduções disponíveis do modelo', |
7294 | 7310 | 'centralnotice-insert' => 'Inserir: $1', |
7295 | | - 'centralnotice-hide-button' => '{{int:centralnotice-shared-hide}} link', |
7296 | | - 'centralnotice-collapse-button' => '{{int:centralnotice-shared-collapse}} link', |
7297 | | - 'centralnotice-expand-button' => '{{int:centralnotice-shared-expand}} link', |
| 7311 | + 'centralnotice-hide-button' => 'Ocultar link', |
| 7312 | + 'centralnotice-collapse-button' => 'Colapsar link', |
| 7313 | + 'centralnotice-expand-button' => 'Expandir link', |
7298 | 7314 | 'centralnotice-close-button' => 'Botão fechar', |
7299 | 7315 | 'centralnotice-translate-button' => 'Ajudar a traduzir link', |
7300 | 7316 | 'centralnotice-donate-button' => 'Botão Donativo', |
— | — | @@ -8096,8 +8112,8 @@ |
8097 | 8113 | 'centralnotice-preview-all-template-translations' => 'Халыып баар тылбаастарын барытын көрүү', |
8098 | 8114 | 'centralnotice-insert' => 'Киллэрии: $1', |
8099 | 8115 | 'centralnotice-hide-button' => 'Сигэни кистииргэ', |
8100 | | - 'centralnotice-collapse-button' => '{{int:centralnotice-shared-collapse}} сигэни', |
8101 | | - 'centralnotice-expand-button' => '{{int:centralnotice-shared-expand}} сигэни', |
| 8116 | + 'centralnotice-collapse-button' => '{{int:centralnotice-shared-collapse}} Сигэни кистээ', |
| 8117 | + 'centralnotice-expand-button' => '{{int:centralnotice-shared-expand}} Сигэни тэнит', |
8102 | 8118 | 'centralnotice-close-button' => 'Сабар тимэх', |
8103 | 8119 | 'centralnotice-translate-button' => 'Тылбаас көмөтүгэр сигэ', |
8104 | 8120 | 'centralnotice-donate-button' => 'Харчынан өйөбүл тимэҕэ', |
— | — | @@ -8448,9 +8464,9 @@ |
8449 | 8465 | 'centralnotice-clone-name' => 'Názov:', |
8450 | 8466 | 'centralnotice-preview-all-template-translations' => 'Náhľad všetkých dostupných verzií šablóny', |
8451 | 8467 | 'centralnotice-insert' => 'Vložiť: $1', |
8452 | | - 'centralnotice-hide-button' => '{{int:centralnotice-shared-hide}} odkaz', |
8453 | | - 'centralnotice-collapse-button' => '{{int:centralnotice-shared-collapse}} odkaz', |
8454 | | - 'centralnotice-expand-button' => '{{int:centralnotice-shared-expand}} odkaz', |
| 8468 | + 'centralnotice-hide-button' => 'Odkaz „Skryť“', |
| 8469 | + 'centralnotice-collapse-button' => 'Odkaz „Zbaliť“', |
| 8470 | + 'centralnotice-expand-button' => 'Odkaz „Rozbaliť“', |
8455 | 8471 | 'centralnotice-close-button' => 'Tlačidlo Zatvoriť', |
8456 | 8472 | 'centralnotice-translate-button' => 'Pomôžte preložiť odkaz', |
8457 | 8473 | 'centralnotice-donate-button' => 'Tlačidlo Podpora', |
— | — | @@ -8643,8 +8659,9 @@ |
8644 | 8660 | 'centralnotice-country' => 'Veni', |
8645 | 8661 | ); |
8646 | 8662 | |
8647 | | -/** Serbian Cyrillic ekavian (Српски (ћирилица)) |
| 8663 | +/** Serbian Cyrillic ekavian (Српски (ћирилица)) |
8648 | 8664 | * @author Millosh |
| 8665 | + * @author Rancher |
8649 | 8666 | * @author Јованвб |
8650 | 8667 | * @author Михајло Анђелковић |
8651 | 8668 | */ |
— | — | @@ -8689,7 +8706,7 @@ |
8690 | 8707 | 'centralnotice-hours' => 'Сат', |
8691 | 8708 | 'centralnotice-min' => 'Минут', |
8692 | 8709 | 'centralnotice-project-lang' => 'Име пројекта', |
8693 | | - 'centralnotice-project-name' => 'Име пројекта', |
| 8710 | + 'centralnotice-project-name' => 'Назив пројекта', |
8694 | 8711 | 'centralnotice-start-date' => 'Почетни датум', |
8695 | 8712 | 'centralnotice-start-time' => 'Почетно време (UTC)', |
8696 | 8713 | 'centralnotice-no-templates' => 'Шаблони нису проађен. |
— | — | @@ -8888,6 +8905,7 @@ |
8889 | 8906 | * @author Lejonel |
8890 | 8907 | * @author M.M.S. |
8891 | 8908 | * @author Najami |
| 8909 | + * @author Tobulos1 |
8892 | 8910 | */ |
8893 | 8911 | $messages['sv'] = array( |
8894 | 8912 | 'centralnotice' => 'Centralmeddelande-administration', |
— | — | @@ -8991,9 +9009,9 @@ |
8992 | 9010 | 'centralnotice-clone-name' => 'Namn:', |
8993 | 9011 | 'centralnotice-preview-all-template-translations' => 'Förhandsgranska alla tillgängliga översättningar av mallen', |
8994 | 9012 | 'centralnotice-insert' => 'Infoga: $1', |
8995 | | - 'centralnotice-hide-button' => '{{int:centralnotice-shared-hide}} länk', |
8996 | | - 'centralnotice-collapse-button' => '{{int:centralnotice-shared-collapse}}-länk', |
8997 | | - 'centralnotice-expand-button' => '{{int:centralnotice-shared-expand}}-länk', |
| 9013 | + 'centralnotice-hide-button' => 'Göm länk', |
| 9014 | + 'centralnotice-collapse-button' => 'Göm länk', |
| 9015 | + 'centralnotice-expand-button' => 'Expandera länk', |
8998 | 9016 | 'centralnotice-close-button' => 'Stäng-knapp', |
8999 | 9017 | 'centralnotice-translate-button' => 'Hjälp till att översätta-länk', |
9000 | 9018 | 'centralnotice-donate-button' => 'Donera-knapp', |
— | — | @@ -9835,9 +9853,9 @@ |
9836 | 9854 | 'centralnotice-clone-name' => 'Adı:', |
9837 | 9855 | 'centralnotice-preview-all-template-translations' => 'Şablonun bütün uygun çevirilerini önizle', |
9838 | 9856 | 'centralnotice-insert' => 'Ekle: $1', |
9839 | | - 'centralnotice-hide-button' => '{{int:centralnotice-shared-hide}} bağlantısı', |
9840 | | - 'centralnotice-collapse-button' => '{{int:centralnotice-shared-collapse}} bağlantısı', |
9841 | | - 'centralnotice-expand-button' => '{{int:centralnotice-shared-expand}} bağlantısı', |
| 9857 | + 'centralnotice-hide-button' => 'Bağlantıyı gizle', |
| 9858 | + 'centralnotice-collapse-button' => 'Bağlantıyı daralt', |
| 9859 | + 'centralnotice-expand-button' => 'Bağlantıyı genişlet', |
9842 | 9860 | 'centralnotice-close-button' => 'Kapatma düğmesi', |
9843 | 9861 | 'centralnotice-translate-button' => 'Çevirmeye yardım edin bağlantısı', |
9844 | 9862 | 'centralnotice-donate-button' => 'Bağış düğmesi', |
— | — | @@ -10675,11 +10693,16 @@ |
10676 | 10694 | * @author Frankou |
10677 | 10695 | * @author Horacewai2 |
10678 | 10696 | * @author Liangent |
| 10697 | + * @author Mark85296341 |
| 10698 | + * @author Waihorace |
10679 | 10699 | * @author Wrightbus |
10680 | 10700 | */ |
10681 | 10701 | $messages['zh-hant'] = array( |
10682 | 10702 | 'centralnotice' => '中央通告管理', |
10683 | | - 'noticetemplate' => '中央通告模板', |
| 10703 | + 'noticetemplate' => '中央通告管理', |
| 10704 | + 'bannerallocation' => '中央通告管理', |
| 10705 | + 'right-centralnotice-admin' => '管理中央通告', |
| 10706 | + 'action-centralnotice-admin' => '管理中央通告', |
10684 | 10707 | 'centralnotice-desc' => '在頁面頂端增加統一的公告欄位', |
10685 | 10708 | 'centralnotice-summary' => '這個模塊允許你編輯你當前設置的中央通告。 |
10686 | 10709 | 它也可以用於添加或刪除舊的通告。', |
— | — | @@ -10688,31 +10711,44 @@ |
10689 | 10712 | 'centralnotice-end-date' => '結束日期', |
10690 | 10713 | 'centralnotice-enabled' => '已啟用', |
10691 | 10714 | 'centralnotice-modify' => '提交', |
| 10715 | + 'centralnotice-save-banner' => '儲存橫幅', |
10692 | 10716 | 'centralnotice-preview' => '預覽', |
10693 | | - 'centralnotice-add-new' => '添加一個新的中央通告', |
| 10717 | + 'centralnotice-add-new' => '新增一個新的中央通告', |
10694 | 10718 | 'centralnotice-remove' => '移除', |
10695 | 10719 | 'centralnotice-translate-heading' => '$1的翻譯', |
10696 | 10720 | 'centralnotice-manage' => '管理中央通告', |
10697 | | - 'centralnotice-add' => '添加', |
10698 | | - 'centralnotice-add-notice' => '添加一個通告', |
10699 | | - 'centralnotice-add-template' => '添加一個模板', |
| 10721 | + 'centralnotice-manage-templates' => '管理橫幅', |
| 10722 | + 'centralnotice-add' => '新增', |
| 10723 | + 'centralnotice-add-notice' => '新增一個通告', |
| 10724 | + 'centralnotice-edit-notice' => '編輯活動', |
| 10725 | + 'centralnotice-add-template' => '新增一個模板', |
10700 | 10726 | 'centralnotice-show-notices' => '顯示通告', |
10701 | 10727 | 'centralnotice-list-templates' => '列出模板', |
| 10728 | + 'centralnotice-multiple' => '較多($1)', |
| 10729 | + 'centralnotice-all-projects' => '所有計畫', |
10702 | 10730 | 'centralnotice-translations' => '翻譯', |
10703 | 10731 | 'centralnotice-translate-to' => '翻譯到', |
10704 | 10732 | 'centralnotice-translate' => '翻譯', |
10705 | 10733 | 'centralnotice-english' => '英語', |
10706 | | - 'centralnotice-banner-name' => '模板名稱', |
| 10734 | + 'centralnotice-banner-name' => '橫幅名稱:', |
| 10735 | + 'centralnotice-banner' => '橫幅', |
| 10736 | + 'centralnotice-banner-heading' => '橫幅:$1', |
10707 | 10737 | 'centralnotice-templates' => '模板', |
10708 | 10738 | 'centralnotice-weight' => '權重', |
10709 | 10739 | 'centralnotice-locked' => '已鎖定', |
| 10740 | + 'centralnotice-notice' => '活動', |
| 10741 | + 'centralnotice-notice-heading' => '活動:$1', |
10710 | 10742 | 'centralnotice-notices' => '通告', |
10711 | 10743 | 'centralnotice-notice-exists' => '通告已經存在。 |
10712 | | -沒有添加', |
| 10744 | +不新增', |
| 10745 | + 'centralnotice-no-language' => '没有一種語言被選的運動。不添加。', |
| 10746 | + 'centralnotice-no-project' => '這個運動沒有選擇任何項目,故此沒有添加。', |
10713 | 10747 | 'centralnotice-template-exists' => '模板已經存在。 |
10714 | 10748 | 沒有添加', |
10715 | | - 'centralnotice-notice-doesnt-exist' => '通告不存在。 |
10716 | | -沒有東西移除', |
| 10749 | + 'centralnotice-notice-doesnt-exist' => '通告不存在。', |
| 10750 | + 'centralnotice-remove-notice-doesnt-exist' => '通告不存在。 |
| 10751 | +沒有東西移除。', |
| 10752 | + 'centralnotice-banner-doesnt-exist' => '橫幅不存在。', |
10717 | 10753 | 'centralnotice-template-still-bound' => '模板不存在。 |
10718 | 10754 | 沒有東西移除。', |
10719 | 10755 | 'centralnotice-template-body' => '模板體:', |
— | — | @@ -10722,17 +10758,20 @@ |
10723 | 10759 | 'centralnotice-hours' => '時', |
10724 | 10760 | 'centralnotice-min' => '分', |
10725 | 10761 | 'centralnotice-project-lang' => '計劃語言', |
| 10762 | + 'centralnotice-select' => '選擇:$1', |
| 10763 | + 'centralnotice-top-ten-languages' => '前10種語言', |
10726 | 10764 | 'centralnotice-project-name' => '計劃名稱', |
10727 | 10765 | 'centralnotice-start-date' => '開始日期', |
10728 | 10766 | 'centralnotice-start-time' => '開始時間(UTC)', |
| 10767 | + 'centralnotice-end-time' => '結束時間(UTC)', |
10729 | 10768 | 'centralnotice-assigned-templates' => '已分配的模板', |
10730 | | - 'centralnotice-no-templates' => '沒有找到模板。 |
10731 | | -添加一些!', |
10732 | | - 'centralnotice-no-templates-assigned' => '沒有模板分配到通告。 |
10733 | | -添加一些!', |
10734 | | - 'centralnotice-available-templates' => '可用模板', |
10735 | | - 'centralnotice-template-already-exists' => '模板已經綁定到營銷。 |
10736 | | -沒有添加', |
| 10769 | + 'centralnotice-no-templates' => '沒有找到橫幅。 |
| 10770 | +新增一些!', |
| 10771 | + 'centralnotice-no-templates-assigned' => '沒有橫幅分配到通告。 |
| 10772 | +新增一些!', |
| 10773 | + 'centralnotice-available-templates' => '可用橫幅', |
| 10774 | + 'centralnotice-template-already-exists' => '模板已經綁定到橫幅。 |
| 10775 | +不新增', |
10737 | 10776 | 'centralnotice-preview-template' => '預覽模板', |
10738 | 10777 | 'centralnotice-change-lang' => '改變翻譯語言', |
10739 | 10778 | 'centralnotice-weights' => '權重', |
— | — | @@ -10750,17 +10789,43 @@ |
10751 | 10790 | 在下面添加一個。', |
10752 | 10791 | 'centralnotice-no-templates-translate' => '沒有任何可以編輯翻譯的模板', |
10753 | 10792 | 'centralnotice-number-uses' => '使用', |
| 10793 | + 'centralnotice-settings' => '設定', |
10754 | 10794 | 'centralnotice-edit-template' => '編輯模板', |
10755 | | - 'centralnotice-edit-template-summary' => '要創建一個可本地化的消息,使用三個大括號,例如{{{jimbo-quote}}}。', |
10756 | | - 'centralnotice-message' => '消息', |
10757 | | - 'centralnotice-message-not-set' => '沒有設置消息', |
| 10795 | + 'centralnotice-edit-template-summary' => '要建立一個可本地化的消息,使用三個大括號,例如{{{jimbo-quote}}}。', |
| 10796 | + 'centralnotice-message' => '訊息', |
| 10797 | + 'centralnotice-message-not-set' => '沒有設定訊息', |
10758 | 10798 | 'centralnotice-clone' => '建立副本', |
10759 | | - 'centralnotice-clone-notice' => '創建一個模板的副本', |
| 10799 | + 'centralnotice-clone-notice' => '建立建一個模板的副本', |
| 10800 | + 'centralnotice-clone-name' => '名字:', |
10760 | 10801 | 'centralnotice-preview-all-template-translations' => '預覽模板的所有可用翻譯', |
10761 | | - 'right-centralnotice-admin' => '管理中央通告', |
10762 | | - 'right-centralnotice-translate' => '翻譯中央通告', |
10763 | | - 'action-centralnotice-admin' => '管理中央通告', |
10764 | | - 'action-centralnotice-translate' => '翻譯中央通告', |
| 10802 | + 'centralnotice-insert' => '插入:$1', |
| 10803 | + 'centralnotice-hide-button' => '隱藏連結', |
| 10804 | + 'centralnotice-collapse-button' => '摺疊連結', |
| 10805 | + 'centralnotice-expand-button' => '展開連結', |
| 10806 | + 'centralnotice-close-button' => '關閉按鈕', |
| 10807 | + 'centralnotice-translate-button' => '協助翻譯連結', |
| 10808 | + 'centralnotice-donate-button' => '捐款按鈕', |
| 10809 | + 'centralnotice-expanded-banner' => '展開了的橫幅', |
| 10810 | + 'centralnotice-collapsed-banner' => '收縮了的橫幅', |
| 10811 | + 'centralnotice-banner-display' => '顯示為:', |
| 10812 | + 'centralnotice-banner-anonymous' => '匿名用戶', |
| 10813 | + 'centralnotice-banner-logged-in' => '已登入用戶', |
| 10814 | + 'centralnotice-banner-type' => '橫幅類型:', |
| 10815 | + 'centralnotice-banner-hidable' => '靜態可隱藏', |
| 10816 | + 'centralnotice-banner-collapsible' => '可摺疊', |
| 10817 | + 'centralnotice-geotargeted' => '已地理定位的', |
| 10818 | + 'centralnotice-countries' => '國家', |
| 10819 | + 'centralnotice-allocation' => '分配', |
| 10820 | + 'centralnotice-view-allocation' => '查看橫幅分配', |
| 10821 | + 'centralnotice-allocation-instructions' => '選擇你想察看橫幅配額的環境:', |
| 10822 | + 'centralnotice-languages' => '語言', |
| 10823 | + 'centralnotice-projects' => '專案', |
| 10824 | + 'centralnotice-country' => '國家', |
| 10825 | + 'centralnotice-no-allocation' => '沒有橫幅分配。', |
| 10826 | + 'centralnotice-allocation-description' => '在$1.$2,$3的分配:', |
| 10827 | + 'centralnotice-percentage' => '百分比', |
| 10828 | + 'centralnotice-documentwrite-error' => 'document.write() 不能在橫幅中使用。 |
| 10829 | +更多資訊請參見 http://meta.wikimedia.org/wiki/Help:CentralNotice 。', |
10765 | 10830 | 'centralnotice-preferred' => '偏好的', |
10766 | 10831 | ); |
10767 | 10832 | |
Property changes on: branches/wmf/1.16wmf4/extensions/CentralNotice |
___________________________________________________________________ |
Modified: svn:mergeinfo |
10768 | 10833 | Merged /trunk/extensions/CentralNotice:r80152-80602 |