Index: trunk/extensions/Wikilog/WikilogFeed.php |
— | — | @@ -35,8 +35,8 @@ |
36 | 36 | class WikilogFeed |
37 | 37 | { |
38 | 38 | /** |
39 | | - * Feed title (i.e., not Wikilog title). For Special:Wikilog, 'wikilog' |
40 | | - * system message should be used. |
| 39 | + * Feed title (i.e., not Wikilog title). For Special:Wikilog, |
| 40 | + * 'wikilog-specialwikilog-title' system message should be used. |
41 | 41 | */ |
42 | 42 | protected $mTitle; |
43 | 43 | |
— | — | @@ -315,7 +315,7 @@ |
316 | 316 | */ |
317 | 317 | public function getSiteFeedObject() { |
318 | 318 | global $wgContLanguageCode, $wgWikilogFeedClasses, $wgFavicon, $wgLogo; |
319 | | - $title = wfMsgForContent( 'wikilog' ); |
| 319 | + $title = wfMsgForContent( 'wikilog-specialwikilog-title' ); |
320 | 320 | $subtitle = wfMsgExt( 'wikilog-feed-description', array( 'parse', 'content' ) ); |
321 | 321 | |
322 | 322 | $updated = $this->mDb->selectField( 'wikilog_wikilogs', |
Index: trunk/extensions/Wikilog/SpecialWikilog.php |
— | — | @@ -54,6 +54,24 @@ |
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
| 58 | + * Execute the special page. |
| 59 | + * Called from MediaWiki. |
| 60 | + */ |
| 61 | + public function execute( $parameters ) { |
| 62 | + global $wgRequest; |
| 63 | + |
| 64 | + $feedFormat = $wgRequest->getVal( 'feed' ); |
| 65 | + |
| 66 | + if ( $feedFormat ) { |
| 67 | + $opts = $this->feedSetup(); |
| 68 | + return $this->feedOutput( $feedFormat, $opts ); |
| 69 | + } else { |
| 70 | + $opts = $this->webSetup( $parameters ); |
| 71 | + return $this->webOutput( $opts ); |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + /** |
58 | 76 | * Returns default options. |
59 | 77 | */ |
60 | 78 | public function getDefaultOptions() { |
— | — | @@ -106,24 +124,6 @@ |
107 | 125 | } |
108 | 126 | |
109 | 127 | /** |
110 | | - * Execute the special page. |
111 | | - * Called from MediaWiki. |
112 | | - */ |
113 | | - public function execute( $parameters ) { |
114 | | - global $wgRequest; |
115 | | - |
116 | | - $feedFormat = $wgRequest->getVal( 'feed' ); |
117 | | - |
118 | | - if ( $feedFormat ) { |
119 | | - $opts = $this->feedSetup(); |
120 | | - return $this->feedOutput( $feedFormat, $opts ); |
121 | | - } else { |
122 | | - $opts = $this->webSetup( $parameters ); |
123 | | - return $this->webOutput( $opts ); |
124 | | - } |
125 | | - } |
126 | | - |
127 | | - /** |
128 | 128 | * Format the HTML output of the special page. |
129 | 129 | * @param $opts Form options, such as wikilog name, category, date, etc. |
130 | 130 | */ |
— | — | @@ -228,6 +228,14 @@ |
229 | 229 | } |
230 | 230 | |
231 | 231 | /** |
| 232 | + * Returns the name used as page title in the special page itself, |
| 233 | + * and also the name that will be listed in Special:Specialpages. |
| 234 | + */ |
| 235 | + public function getDescription() { |
| 236 | + return wfMsg( 'wikilog-specialwikilog-title' ); |
| 237 | + } |
| 238 | + |
| 239 | + /** |
232 | 240 | * Parse inline parameters passed after the special page name. |
233 | 241 | * Example: Special:Wikilog/Category:catname/tag=tagname/5 |
234 | 242 | * @param $parameters Inline parameters after the special page name. |
Index: trunk/extensions/Wikilog/WikilogMainPage.php |
— | — | @@ -135,23 +135,25 @@ |
136 | 136 | public function wikilog() { |
137 | 137 | global $wgUser, $wgOut, $wgRequest; |
138 | 138 | |
139 | | - if ( !$this->mTitle->exists() ) { |
140 | | - $wgOut->showErrorPage( 'nopagetitle', 'nopagetext' ); |
141 | | - return; |
142 | | - } |
143 | | - |
144 | | - if ( $wgRequest->getBool( 'wlActionNewItem' ) ) |
| 139 | + if ( $this->mTitle->exists() && $wgRequest->getBool( 'wlActionNewItem' ) ) |
145 | 140 | return $this->actionNewItem(); |
146 | 141 | |
147 | | - $skin = $wgUser->getSkin(); |
148 | 142 | $wgOut->setPageTitle( wfMsg( 'wikilog-tab-title' ) ); |
149 | 143 | $wgOut->setRobotpolicy( 'noindex,nofollow' ); |
150 | 144 | |
151 | | - $wgOut->addHTML( $this->formatWikilogDescription( $skin ) ); |
152 | | - $wgOut->addHTML( $this->formatWikilogInformation( $skin ) ); |
153 | | - |
154 | | - if ( $this->mTitle->quickUserCan( 'edit' ) ) { |
155 | | - $wgOut->addHTML( $this->formNewItem() ); |
| 145 | + if ( $this->mTitle->exists() ) { |
| 146 | + $skin = $wgUser->getSkin(); |
| 147 | + $wgOut->addHTML( $this->formatWikilogDescription( $skin ) ); |
| 148 | + $wgOut->addHTML( $this->formatWikilogInformation( $skin ) ); |
| 149 | + if ( $this->mTitle->quickUserCan( 'edit' ) ) { |
| 150 | + $wgOut->addHTML( $this->formNewItem() ); |
| 151 | + } |
| 152 | + } else if ( $this->mTitle->userCan( 'create' ) ) { |
| 153 | + $text = wfMsgExt( 'wikilog-missing-wikilog', 'parse' ); |
| 154 | + $text = WikilogUtils::wrapDiv( 'noarticletext', $text ); |
| 155 | + $wgOut->addHTML( $text ); |
| 156 | + } else { |
| 157 | + $this->showMissingArticle(); |
156 | 158 | } |
157 | 159 | } |
158 | 160 | |
Index: trunk/extensions/Wikilog/Wikilog.i18n.php |
— | — | @@ -14,11 +14,12 @@ |
15 | 15 | # Extension information |
16 | 16 | 'wikilog-desc' => 'Adds blogging features, creating a wiki-blog hybrid', |
17 | 17 | 'wikilog-auto' => 'Wikilog Auto', # reserved username |
| 18 | + 'wikilog-help' => "{{ns:Help}}:Wikilog", |
18 | 19 | 'right-wl-postcomment' => 'Post comments to wikilog articles', |
19 | 20 | 'right-wl-moderation' => 'Moderation of wikilog article comments', |
20 | 21 | |
21 | 22 | # Special:Wikilog |
22 | | - 'wikilog' => 'Wikilogs', # Page title |
| 23 | + 'wikilog-specialwikilog-title' => 'Wikilogs', # Page title |
23 | 24 | 'wikilog-specialwikilog' => 'Wikilog', # Special page name (DEPRECATED AFTER MW1.16) |
24 | 25 | |
25 | 26 | # Logs |
— | — | @@ -31,6 +32,14 @@ |
32 | 33 | # Wikilog tab |
33 | 34 | 'wikilog-tab' => 'Wikilog', |
34 | 35 | 'wikilog-tab-title' => 'Wikilog actions', |
| 36 | + 'wikilog-missing-wikilog' => " |
| 37 | +This is the [[{{int:wikilog-help}}|wikilog]] page for [[{{FULLPAGENAME}}]]. |
| 38 | + |
| 39 | +This wikilog does not exist yet. |
| 40 | +In order to publish articles and enable other wikilog features, it has to be created first. |
| 41 | + |
| 42 | +* <span class=\"plainlinks\">[{{fullurl:{{FULLPAGENAME}}|action=edit}} Create this wikilog].</span> |
| 43 | +", |
35 | 44 | 'wikilog-information' => 'Wikilog information', |
36 | 45 | 'wikilog-post-count-published' => 'There {{PLURAL:$1|is one published article|are $1 published articles}} in this wikilog', |
37 | 46 | 'wikilog-post-count-drafts' => 'There {{PLURAL:$1|is one unpublished (draft) article|are $1 unpublished (draft) articles}}', |
— | — | @@ -192,9 +201,19 @@ |
193 | 202 | $messages['qqq'] = array( |
194 | 203 | 'wikilog-desc' => '{{desc}}', |
195 | 204 | 'wikilog-auto' => 'This is a reserved username that will edit as a robot.', |
| 205 | + 'wikilog-help' => 'This is the name of the help page for the extension. |
| 206 | +This should only be changed when a translation of the extension manual is available in the target language. |
| 207 | +Currently, English is the only language the manual is available in. |
| 208 | +So, let this value untranslated until the manual is available in your language.', |
196 | 209 | 'right-wl-postcomment' => '{{doc-right|wl-postcomment}}', |
197 | 210 | 'right-wl-moderation' => '{{doc-right|wl-moderation}}', |
198 | | - 'wikilog-specialwikilog' => 'This is a special page name', |
| 211 | + 'wikilog-specialwikilog-title' => 'This is a special page title. |
| 212 | +"Wikilog" is used as in contraction of "wiki" and "blog" (or "weblog"). |
| 213 | +If these words are the same in your language, then just transliterate it; |
| 214 | +otherwise use the proper translation for both words and try to keep the idea of something that ties both concepts into a single object. |
| 215 | +It is used in the plural in this title.', |
| 216 | + 'wikilog-specialwikilog' => 'This is a special page alias. It is obsolete and will be removed in a future version of the extension.', # See Wikilog.i18n.alias.php. |
| 217 | + 'wikilog-missing-wikilog' => 'Displayed when user visits a page for a wikilog that has not been created yet. Similar to {{msg-mw:noarticletext}}.', |
199 | 218 | 'wikilog-log-cmt-approve' => 'Log action message used for entries describing comments approved by moderators, as in someone "did that". Similar to {{msg-mw|deletedarticle}} and {{msg-mw|protectedarticle}}. |
200 | 219 | Parameters: |
201 | 220 | * $1 is the page title of the approved comment.', |
— | — | @@ -425,7 +444,7 @@ |
426 | 445 | 'wikilog-auto' => 'Робат вікіблёгу', |
427 | 446 | 'right-wl-postcomment' => 'пакідаць камэнтары ў артыкулах вікіблёгу', |
428 | 447 | 'right-wl-moderation' => 'мадэрацыя камэнтараў да артыкулаў вікіблёгу', |
429 | | - 'wikilog' => 'Вікіблёгі', |
| 448 | + 'wikilog-specialwikilog-title' => 'Вікіблёгі', |
430 | 449 | 'wikilog-specialwikilog' => 'Вікіблёг', |
431 | 450 | 'wikilog-log-pagename' => 'Журнал дзеяньняў вікіблёгу', |
432 | 451 | 'wikilog-log-pagetext' => 'Ніжэй пададзены сьпіс дзеяньняў вікіблёгу.', |
— | — | @@ -611,7 +630,7 @@ |
612 | 631 | $messages['br'] = array( |
613 | 632 | 'wikilog-auto' => 'Wikilog Aoto', |
614 | 633 | 'right-wl-postcomment' => 'Postañ addisplegoù da bennadoù wikilog', |
615 | | - 'wikilog' => 'Wikilogoù', |
| 634 | + 'wikilog-specialwikilog-title' => 'Wikilogoù', |
616 | 635 | 'wikilog-specialwikilog' => 'Wikilog', |
617 | 636 | 'wikilog-log-pagename' => 'Marilh an oberoù war wikilog', |
618 | 637 | 'wikilog-log-cmt-approve' => 'addispleg aprouet [[$1]]', |
— | — | @@ -722,7 +741,7 @@ |
723 | 742 | 'wikilog-auto' => 'Wikilog Auto', |
724 | 743 | 'right-wl-postcomment' => 'Kommentare zu Wikilog-Beiträgen posten', |
725 | 744 | 'right-wl-moderation' => 'Moderation von Kommentaren zu Wikilog-Beiträgen', |
726 | | - 'wikilog' => 'Wikilogs', |
| 745 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
727 | 746 | 'wikilog-specialwikilog' => 'Wikilog', |
728 | 747 | 'wikilog-tab' => 'Wikilog', |
729 | 748 | 'wikilog-tab-title' => 'Wikilog Aktionen', |
— | — | @@ -824,7 +843,7 @@ |
825 | 844 | 'wikilog-auto' => 'Wikilog Auto', |
826 | 845 | 'right-wl-postcomment' => 'Komentary k wikilogowym pśinoskam pósłaś', |
827 | 846 | 'right-wl-moderation' => 'Moderacija komentarow k wikilogowym pśinoskam', |
828 | | - 'wikilog' => 'Wikilogi', |
| 847 | + 'wikilog-specialwikilog-title' => 'Wikilogi', |
829 | 848 | 'wikilog-specialwikilog' => 'Wikilog', |
830 | 849 | 'wikilog-log-pagename' => 'Protokol wikilogowych akcijow', |
831 | 850 | 'wikilog-log-pagetext' => 'Dołojce jo lisćina wikilogowych akcijow.', |
— | — | @@ -965,7 +984,7 @@ |
966 | 985 | * @author Translationista |
967 | 986 | */ |
968 | 987 | $messages['es'] = array( |
969 | | - 'wikilog' => 'Wikilogs', |
| 988 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
970 | 989 | 'wikilog-specialwikilog' => 'Wikilog', |
971 | 990 | 'wikilog-log-pagename' => 'Registro de acciones de Wikilog', |
972 | 991 | 'wikilog-log-cmt-approve' => 'comentario aprobado [[$1]]', |
— | — | @@ -1130,7 +1149,7 @@ |
1131 | 1150 | 'wikilog-auto' => 'Wikilog Auto', |
1132 | 1151 | 'right-wl-postcomment' => 'Poster des commentaires sur les articles de wikilog', |
1133 | 1152 | 'right-wl-moderation' => 'Modération des commentaires sur les articles de wikilog', |
1134 | | - 'wikilog' => 'Wikilogs', |
| 1153 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
1135 | 1154 | 'wikilog-specialwikilog' => 'Wikilog', |
1136 | 1155 | 'wikilog-log-pagename' => 'Journal des actions sur wikilog', |
1137 | 1156 | 'wikilog-log-pagetext' => 'Ci-dessous se trouve une liste des actions sur wikilog.', |
— | — | @@ -1255,7 +1274,7 @@ |
1256 | 1275 | 'wikilog-auto' => 'Wikilog Auto', |
1257 | 1276 | 'right-wl-postcomment' => 'Publicar comentarios nos artigos do wikilog', |
1258 | 1277 | 'right-wl-moderation' => 'Moderar os comentarios dos artigos do wikilog', |
1259 | | - 'wikilog' => 'Wikilogs', |
| 1278 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
1260 | 1279 | 'wikilog-specialwikilog' => 'Wikilog', |
1261 | 1280 | 'wikilog-log-pagename' => 'Rexistro de accións no wikilog', |
1262 | 1281 | 'wikilog-log-pagetext' => 'A continuación está a lista das accións realizadas no wikilog.', |
— | — | @@ -1397,7 +1416,7 @@ |
1398 | 1417 | 'wikilog-auto' => 'Wikilog Auto', |
1399 | 1418 | 'right-wl-postcomment' => 'Kommentar zue Wikilog-Byytreg poschte', |
1400 | 1419 | 'right-wl-moderation' => 'Moderation vu Kommentar zue Wikilog-Byytreg', |
1401 | | - 'wikilog' => 'Wikilogs', |
| 1420 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
1402 | 1421 | 'wikilog-specialwikilog' => 'Wikilog', |
1403 | 1422 | 'wikilog-log-pagename' => 'Wikilog-Aktionslogbuech', |
1404 | 1423 | 'wikilog-log-pagetext' => 'Unte het s e Lischt mit Wikilog-Aktione.', |
— | — | @@ -1555,7 +1574,7 @@ |
1556 | 1575 | 'wikilog-auto' => 'Wikilog Auto', |
1557 | 1576 | 'right-wl-postcomment' => 'Komentary k přinoškam Wikilog pósłać', |
1558 | 1577 | 'right-wl-moderation' => 'Moderacija komentarow k přinoškam Wikilog', |
1559 | | - 'wikilog' => 'Wikiprotokole', |
| 1578 | + 'wikilog-specialwikilog-title' => 'Wikiprotokole', |
1560 | 1579 | 'wikilog-specialwikilog' => 'Wikilog', |
1561 | 1580 | 'wikilog-log-pagename' => 'Protokol akcijow Wikiloga', |
1562 | 1581 | 'wikilog-log-pagetext' => 'Deleka je lisćina wikilogowych akcijow.', |
— | — | @@ -1681,7 +1700,7 @@ |
1682 | 1701 | 'wikilog-auto' => 'Automatikus wikinapló', |
1683 | 1702 | 'right-wl-postcomment' => 'Hozzászólások írása a wikinapló bejegyzésekhez', |
1684 | 1703 | 'right-wl-moderation' => 'wikinapló bejegyzés hozzászólásainak moderálása', |
1685 | | - 'wikilog' => 'Wikinaplók', |
| 1704 | + 'wikilog-specialwikilog-title' => 'Wikinaplók', |
1686 | 1705 | 'wikilog-specialwikilog' => 'Wikinapló', |
1687 | 1706 | 'wikilog-log-pagename' => 'Wikinapló-műveletek naplója', |
1688 | 1707 | 'wikilog-log-pagetext' => 'Alább látható a wikinaplón végzett műveletek listája.', |
— | — | @@ -1806,7 +1825,7 @@ |
1807 | 1826 | 'wikilog-auto' => 'Wikilog Auto', |
1808 | 1827 | 'right-wl-postcomment' => 'Lassar commentos in articulos wikilog', |
1809 | 1828 | 'right-wl-moderation' => 'Moderation de commentos de articulos wikilog', |
1810 | | - 'wikilog' => 'Wikilogs', |
| 1829 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
1811 | 1830 | 'wikilog-specialwikilog' => 'Wikilog', |
1812 | 1831 | 'wikilog-log-pagename' => 'Registro de actiones wikilog', |
1813 | 1832 | 'wikilog-log-pagetext' => 'Seque un lista de actiones wikilog.', |
— | — | @@ -1931,7 +1950,7 @@ |
1932 | 1951 | 'wikilog-auto' => 'Wikilog Auto', |
1933 | 1952 | 'right-wl-postcomment' => 'Mengirim komentar untuk artikel wikilog', |
1934 | 1953 | 'right-wl-moderation' => 'Memoderasi komentar artikel wikilog', |
1935 | | - 'wikilog' => 'Wikilog', |
| 1954 | + 'wikilog-specialwikilog-title' => 'Wikilog', |
1936 | 1955 | 'wikilog-specialwikilog' => 'Wikilog', |
1937 | 1956 | 'wikilog-log-pagename' => 'Log tindakan wikilog', |
1938 | 1957 | 'wikilog-log-pagetext' => 'Berikut adalah daftar tindakan wikilog.', |
— | — | @@ -2057,7 +2076,7 @@ |
2058 | 2077 | 'wikilog-auto' => 'ウィキログ・オート', |
2059 | 2078 | 'right-wl-postcomment' => 'ウィキログの記事にコメントを投稿する', |
2060 | 2079 | 'right-wl-moderation' => 'ウィキログ記事のコメントのモデレーション', |
2061 | | - 'wikilog' => 'ウィキログ', |
| 2080 | + 'wikilog-specialwikilog-title' => 'ウィキログ', |
2062 | 2081 | 'wikilog-specialwikilog' => 'ウィキログ', |
2063 | 2082 | 'wikilog-log-pagename' => 'ウィキログ操作記録', |
2064 | 2083 | 'wikilog-log-pagetext' => '以下にウィキログの操作の一覧を示します。', |
— | — | @@ -2186,7 +2205,7 @@ |
2187 | 2206 | 'wikilog-auto' => '{{int:Wikilog-wikilog}} (automattesch)', |
2188 | 2207 | 'right-wl-postcomment' => 'Aanmärkunge zoh Atikelle vum {{int:Wikilog-wikilog}} afjävve', |
2189 | 2208 | 'right-wl-moderation' => 'De Aanmörkunge zoh Atikelle vum {{int:Wikilog-wikilog}} modderiere', |
2190 | | - 'wikilog' => '{{int:Wikilog-wikilog}} Blogs', |
| 2209 | + 'wikilog-specialwikilog-title' => '{{int:Wikilog-wikilog}} Blogs', |
2191 | 2210 | 'wikilog-specialwikilog' => '{{int:Wikilog-wikilog}}', |
2192 | 2211 | 'wikilog-log-pagename' => 'et Logboch met dem {{int:Wikilog-wikilog}} singe Akßjuhne', |
2193 | 2212 | 'wikilog-log-pagetext' => 'Heh dronger kütt en Leß met dem {{int:Wikilog-wikilog}} sing Akßjuhne.', |
— | — | @@ -2307,7 +2326,7 @@ |
2308 | 2327 | */ |
2309 | 2328 | $messages['lb'] = array( |
2310 | 2329 | 'wikilog-auto' => 'Wikilog Auto', |
2311 | | - 'wikilog' => 'Wikilogs', |
| 2330 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
2312 | 2331 | 'wikilog-specialwikilog' => 'Wikilog', |
2313 | 2332 | 'wikilog-log-cmt-approve' => 'approuvéiert Bemierkung [[$1]]', |
2314 | 2333 | 'wikilog-log-cmt-reject' => 'refuséiert Bemierkung [[$1]]', |
— | — | @@ -2410,7 +2429,7 @@ |
2411 | 2430 | * @author Bjankuloski06 |
2412 | 2431 | */ |
2413 | 2432 | $messages['mk'] = array( |
2414 | | - 'wikilog' => 'Викидневници', |
| 2433 | + 'wikilog-specialwikilog-title' => 'Викидневници', |
2415 | 2434 | 'wikilog-specialwikilog' => 'Викидневник', |
2416 | 2435 | 'wikilog-post-count-all' => 'Има вкупно {{PLURAL:$1|една статија|$1 статии}}.', |
2417 | 2436 | 'wikilog-new-item' => 'Созфај нова статија на викидневникот', |
— | — | @@ -2466,7 +2485,7 @@ |
2467 | 2486 | 'wikilog-auto' => 'Wikilog Automatisch', |
2468 | 2487 | 'right-wl-postcomment' => 'Reacties op wikilog-artikelen plaatsen', |
2469 | 2488 | 'right-wl-moderation' => 'Wikilog-artikelreacties modereren', |
2470 | | - 'wikilog' => 'Wikilogs', |
| 2489 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
2471 | 2490 | 'wikilog-specialwikilog' => 'Wikilog', |
2472 | 2491 | 'wikilog-log-pagename' => 'Wikiloghandelingenlogboek', |
2473 | 2492 | 'wikilog-log-pagetext' => 'Hieronder treft u een lijst van Wikilog-handelingen aan.', |
— | — | @@ -2658,7 +2677,7 @@ |
2659 | 2678 | 'wikilog-auto' => 'Wikilog Auto', |
2660 | 2679 | 'right-wl-postcomment' => 'Postar de comentaris suls articles de wikilog', |
2661 | 2680 | 'right-wl-moderation' => 'Moderacion dels comentaris suls articles de wikilog', |
2662 | | - 'wikilog' => 'Wikilogs', |
| 2681 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
2663 | 2682 | 'wikilog-specialwikilog' => 'Wikilog', |
2664 | 2683 | 'wikilog-log-pagename' => 'Jornal de las accions sus wikilog', |
2665 | 2684 | 'wikilog-log-pagetext' => 'Çaijós se tròba una lista de las accions sus wikilog.', |
— | — | @@ -2793,7 +2812,7 @@ |
2794 | 2813 | 'wikilog-auto' => 'Wikilog Auto', |
2795 | 2814 | 'right-wl-postcomment' => "Gionté dij coment an sj'artìcoj ëd wikilog", |
2796 | 2815 | 'right-wl-moderation' => "Moderassion dij coment an sj'artìcoj ëd wikilog", |
2797 | | - 'wikilog' => 'Wikilogs', |
| 2816 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
2798 | 2817 | 'wikilog-specialwikilog' => 'Wikilog', |
2799 | 2818 | 'wikilog-log-pagename' => "Argistr ëd j'assion su wikilog", |
2800 | 2819 | 'wikilog-log-pagetext' => "Si-sota a-i é na lista dj'assion su wikilog.", |
— | — | @@ -2919,7 +2938,7 @@ |
2920 | 2939 | 'wikilog-auto' => 'Wikilog Auto', |
2921 | 2940 | 'right-wl-postcomment' => 'Criar comentários em artigos wikilog', |
2922 | 2941 | 'right-wl-moderation' => 'Moderação de comentários de artigos wikilog', |
2923 | | - 'wikilog' => 'Wikilogs', |
| 2942 | + 'wikilog-specialwikilog-title' => 'Wikilogs', |
2924 | 2943 | 'wikilog-specialwikilog' => 'Wikilog', |
2925 | 2944 | 'wikilog-log-pagename' => 'Registo de acções wikilog', |
2926 | 2945 | 'wikilog-log-pagetext' => 'Abaixo está uma lista das acções wikilog.', |
— | — | @@ -3107,7 +3126,7 @@ |
3108 | 3127 | 'wikilog-auto' => 'Викилог Авто', |
3109 | 3128 | 'right-wl-postcomment' => 'оставлять комментарии к статьям викилога', |
3110 | 3129 | 'right-wl-moderation' => 'модерировать комментарии к статьям викилога', |
3111 | | - 'wikilog' => 'Викилоги', |
| 3130 | + 'wikilog-specialwikilog-title' => 'Викилоги', |
3112 | 3131 | 'wikilog-specialwikilog' => 'Викилог', |
3113 | 3132 | 'wikilog-log-pagename' => 'Журнал действий викилога', |
3114 | 3133 | 'wikilog-log-pagetext' => 'Ниже приведен список действия викилога.', |
— | — | @@ -3232,7 +3251,7 @@ |
3233 | 3252 | 'wikilog-auto' => 'ස්වයං විකි ලඝු සටහන', |
3234 | 3253 | 'right-wl-postcomment' => 'විකි ලඝු ලිපිවලට විචාර තැපැල් කරන්න.', |
3235 | 3254 | 'right-wl-moderation' => 'විකි ලඝු ලිපි විචාරවල මධ්යස්ථතාව', |
3236 | | - 'wikilog' => 'විකි ලඝු සටහන්', |
| 3255 | + 'wikilog-specialwikilog-title' => 'විකි ලඝු සටහන්', |
3237 | 3256 | 'wikilog-specialwikilog' => 'විකි ලඝු සටහන', |
3238 | 3257 | 'wikilog-log-pagename' => 'විකි ලඝු ක්රියාකාරකම් ලඝු සටහන', |
3239 | 3258 | 'wikilog-log-pagetext' => 'පහතින් විකි ලඝු ක්රියාකාරකම්වල ලැයිස්තුවකි.', |
— | — | @@ -3357,7 +3376,7 @@ |
3358 | 3377 | 'wikilog-auto' => 'Wikilog Auto', |
3359 | 3378 | 'right-wl-postcomment' => 'Skriv kommentarer till wikilog-artiklar', |
3360 | 3379 | 'right-wl-moderation' => 'Moderering av wikilog-artikelkommentarer', |
3361 | | - 'wikilog' => 'Wikilog-bloggar', |
| 3380 | + 'wikilog-specialwikilog-title' => 'Wikilog-bloggar', |
3362 | 3381 | 'wikilog-log-pagename' => 'Wikilog händelselogg', |
3363 | 3382 | 'wikilog-log-pagetext' => 'Nedan är en lista över wikilog-händelser.', |
3364 | 3383 | 'wikilog-log-cmt-approve' => 'godkände kommentar [[$1]]', |
— | — | @@ -3466,7 +3485,7 @@ |
3467 | 3486 | * @author Veeven |
3468 | 3487 | */ |
3469 | 3488 | $messages['te'] = array( |
3470 | | - 'wikilog' => 'వికీచిట్టాలు', |
| 3489 | + 'wikilog-specialwikilog-title' => 'వికీచిట్టాలు', |
3471 | 3490 | 'wikilog-specialwikilog' => 'వికీచిట్టా', |
3472 | 3491 | 'wikilog-tab' => 'వికీచిట్టా', |
3473 | 3492 | 'wikilog-tab-title' => 'వికీచిట్టా చర్యలు', |
— | — | @@ -3518,7 +3537,7 @@ |
3519 | 3538 | * @author Manco Capac |
3520 | 3539 | */ |
3521 | 3540 | $messages['tr'] = array( |
3522 | | - 'wikilog' => 'Vikiloglar', |
| 3541 | + 'wikilog-specialwikilog-title' => 'Vikiloglar', |
3523 | 3542 | 'wikilog-specialwikilog' => 'Vikilog', |
3524 | 3543 | 'wikilog-log-pagetext' => 'Aşağıda vikilog hareketlerinin bir listesini bulabilirsiniz.', |
3525 | 3544 | 'wikilog-tab' => 'Vikilog', |
— | — | @@ -3597,7 +3616,7 @@ |
3598 | 3617 | * @author פוילישער |
3599 | 3618 | */ |
3600 | 3619 | $messages['yi'] = array( |
3601 | | - 'wikilog' => 'וויקילאגן', |
| 3620 | + 'wikilog-specialwikilog-title' => 'וויקילאגן', |
3602 | 3621 | 'wikilog-specialwikilog' => 'וויקילאג', |
3603 | 3622 | 'wikilog-tab' => 'וויקילאג', |
3604 | 3623 | 'wikilog-form-date' => 'דאטע', |