r59763 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r59762‎ | r59763 | r59764 >
Date:00:08, 6 December 2009
Author:juliano
Status:deferred
Tags:
Comment:
Usability improvement in wikilog actions tab. Fixes wl:issue 5.

Renamed 'wikilog' message to 'wikilog-specialwikilog-title', which is much
more clear on its usage and avoids the overused wikilog prefix. Also, some
documentation improvements.
Modified paths:
  • /trunk/extensions/Wikilog/SpecialWikilog.php (modified) (history)
  • /trunk/extensions/Wikilog/Wikilog.i18n.php (modified) (history)
  • /trunk/extensions/Wikilog/WikilogFeed.php (modified) (history)
  • /trunk/extensions/Wikilog/WikilogMainPage.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Wikilog/WikilogFeed.php
@@ -35,8 +35,8 @@
3636 class WikilogFeed
3737 {
3838 /**
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.
4141 */
4242 protected $mTitle;
4343
@@ -315,7 +315,7 @@
316316 */
317317 public function getSiteFeedObject() {
318318 global $wgContLanguageCode, $wgWikilogFeedClasses, $wgFavicon, $wgLogo;
319 - $title = wfMsgForContent( 'wikilog' );
 319+ $title = wfMsgForContent( 'wikilog-specialwikilog-title' );
320320 $subtitle = wfMsgExt( 'wikilog-feed-description', array( 'parse', 'content' ) );
321321
322322 $updated = $this->mDb->selectField( 'wikilog_wikilogs',
Index: trunk/extensions/Wikilog/SpecialWikilog.php
@@ -54,6 +54,24 @@
5555 }
5656
5757 /**
 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+ /**
5876 * Returns default options.
5977 */
6078 public function getDefaultOptions() {
@@ -106,24 +124,6 @@
107125 }
108126
109127 /**
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 - /**
128128 * Format the HTML output of the special page.
129129 * @param $opts Form options, such as wikilog name, category, date, etc.
130130 */
@@ -228,6 +228,14 @@
229229 }
230230
231231 /**
 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+ /**
232240 * Parse inline parameters passed after the special page name.
233241 * Example: Special:Wikilog/Category:catname/tag=tagname/5
234242 * @param $parameters Inline parameters after the special page name.
Index: trunk/extensions/Wikilog/WikilogMainPage.php
@@ -135,23 +135,25 @@
136136 public function wikilog() {
137137 global $wgUser, $wgOut, $wgRequest;
138138
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' ) )
145140 return $this->actionNewItem();
146141
147 - $skin = $wgUser->getSkin();
148142 $wgOut->setPageTitle( wfMsg( 'wikilog-tab-title' ) );
149143 $wgOut->setRobotpolicy( 'noindex,nofollow' );
150144
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();
156158 }
157159 }
158160
Index: trunk/extensions/Wikilog/Wikilog.i18n.php
@@ -14,11 +14,12 @@
1515 # Extension information
1616 'wikilog-desc' => 'Adds blogging features, creating a wiki-blog hybrid',
1717 'wikilog-auto' => 'Wikilog Auto', # reserved username
 18+ 'wikilog-help' => "{{ns:Help}}:Wikilog",
1819 'right-wl-postcomment' => 'Post comments to wikilog articles',
1920 'right-wl-moderation' => 'Moderation of wikilog article comments',
2021
2122 # Special:Wikilog
22 - 'wikilog' => 'Wikilogs', # Page title
 23+ 'wikilog-specialwikilog-title' => 'Wikilogs', # Page title
2324 'wikilog-specialwikilog' => 'Wikilog', # Special page name (DEPRECATED AFTER MW1.16)
2425
2526 # Logs
@@ -31,6 +32,14 @@
3233 # Wikilog tab
3334 'wikilog-tab' => 'Wikilog',
3435 '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+",
3544 'wikilog-information' => 'Wikilog information',
3645 'wikilog-post-count-published' => 'There {{PLURAL:$1|is one published article|are $1 published articles}} in this wikilog',
3746 'wikilog-post-count-drafts' => 'There {{PLURAL:$1|is one unpublished (draft) article|are $1 unpublished (draft) articles}}',
@@ -192,9 +201,19 @@
193202 $messages['qqq'] = array(
194203 'wikilog-desc' => '{{desc}}',
195204 '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.',
196209 'right-wl-postcomment' => '{{doc-right|wl-postcomment}}',
197210 '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}}.',
199218 '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}}.
200219 Parameters:
201220 * $1 is the page title of the approved comment.',
@@ -425,7 +444,7 @@
426445 'wikilog-auto' => 'Робат вікіблёгу',
427446 'right-wl-postcomment' => 'пакідаць камэнтары ў артыкулах вікіблёгу',
428447 'right-wl-moderation' => 'мадэрацыя камэнтараў да артыкулаў вікіблёгу',
429 - 'wikilog' => 'Вікіблёгі',
 448+ 'wikilog-specialwikilog-title' => 'Вікіблёгі',
430449 'wikilog-specialwikilog' => 'Вікіблёг',
431450 'wikilog-log-pagename' => 'Журнал дзеяньняў вікіблёгу',
432451 'wikilog-log-pagetext' => 'Ніжэй пададзены сьпіс дзеяньняў вікіблёгу.',
@@ -611,7 +630,7 @@
612631 $messages['br'] = array(
613632 'wikilog-auto' => 'Wikilog Aoto',
614633 'right-wl-postcomment' => 'Postañ addisplegoù da bennadoù wikilog',
615 - 'wikilog' => 'Wikilogoù',
 634+ 'wikilog-specialwikilog-title' => 'Wikilogoù',
616635 'wikilog-specialwikilog' => 'Wikilog',
617636 'wikilog-log-pagename' => 'Marilh an oberoù war wikilog',
618637 'wikilog-log-cmt-approve' => 'addispleg aprouet [[$1]]',
@@ -722,7 +741,7 @@
723742 'wikilog-auto' => 'Wikilog Auto',
724743 'right-wl-postcomment' => 'Kommentare zu Wikilog-Beiträgen posten',
725744 'right-wl-moderation' => 'Moderation von Kommentaren zu Wikilog-Beiträgen',
726 - 'wikilog' => 'Wikilogs',
 745+ 'wikilog-specialwikilog-title' => 'Wikilogs',
727746 'wikilog-specialwikilog' => 'Wikilog',
728747 'wikilog-tab' => 'Wikilog',
729748 'wikilog-tab-title' => 'Wikilog Aktionen',
@@ -824,7 +843,7 @@
825844 'wikilog-auto' => 'Wikilog Auto',
826845 'right-wl-postcomment' => 'Komentary k wikilogowym pśinoskam pósłaś',
827846 'right-wl-moderation' => 'Moderacija komentarow k wikilogowym pśinoskam',
828 - 'wikilog' => 'Wikilogi',
 847+ 'wikilog-specialwikilog-title' => 'Wikilogi',
829848 'wikilog-specialwikilog' => 'Wikilog',
830849 'wikilog-log-pagename' => 'Protokol wikilogowych akcijow',
831850 'wikilog-log-pagetext' => 'Dołojce jo lisćina wikilogowych akcijow.',
@@ -965,7 +984,7 @@
966985 * @author Translationista
967986 */
968987 $messages['es'] = array(
969 - 'wikilog' => 'Wikilogs',
 988+ 'wikilog-specialwikilog-title' => 'Wikilogs',
970989 'wikilog-specialwikilog' => 'Wikilog',
971990 'wikilog-log-pagename' => 'Registro de acciones de Wikilog',
972991 'wikilog-log-cmt-approve' => 'comentario aprobado [[$1]]',
@@ -1130,7 +1149,7 @@
11311150 'wikilog-auto' => 'Wikilog Auto',
11321151 'right-wl-postcomment' => 'Poster des commentaires sur les articles de wikilog',
11331152 'right-wl-moderation' => 'Modération des commentaires sur les articles de wikilog',
1134 - 'wikilog' => 'Wikilogs',
 1153+ 'wikilog-specialwikilog-title' => 'Wikilogs',
11351154 'wikilog-specialwikilog' => 'Wikilog',
11361155 'wikilog-log-pagename' => 'Journal des actions sur wikilog',
11371156 'wikilog-log-pagetext' => 'Ci-dessous se trouve une liste des actions sur wikilog.',
@@ -1255,7 +1274,7 @@
12561275 'wikilog-auto' => 'Wikilog Auto',
12571276 'right-wl-postcomment' => 'Publicar comentarios nos artigos do wikilog',
12581277 'right-wl-moderation' => 'Moderar os comentarios dos artigos do wikilog',
1259 - 'wikilog' => 'Wikilogs',
 1278+ 'wikilog-specialwikilog-title' => 'Wikilogs',
12601279 'wikilog-specialwikilog' => 'Wikilog',
12611280 'wikilog-log-pagename' => 'Rexistro de accións no wikilog',
12621281 'wikilog-log-pagetext' => 'A continuación está a lista das accións realizadas no wikilog.',
@@ -1397,7 +1416,7 @@
13981417 'wikilog-auto' => 'Wikilog Auto',
13991418 'right-wl-postcomment' => 'Kommentar zue Wikilog-Byytreg poschte',
14001419 'right-wl-moderation' => 'Moderation vu Kommentar zue Wikilog-Byytreg',
1401 - 'wikilog' => 'Wikilogs',
 1420+ 'wikilog-specialwikilog-title' => 'Wikilogs',
14021421 'wikilog-specialwikilog' => 'Wikilog',
14031422 'wikilog-log-pagename' => 'Wikilog-Aktionslogbuech',
14041423 'wikilog-log-pagetext' => 'Unte het s e Lischt mit Wikilog-Aktione.',
@@ -1555,7 +1574,7 @@
15561575 'wikilog-auto' => 'Wikilog Auto',
15571576 'right-wl-postcomment' => 'Komentary k přinoškam Wikilog pósłać',
15581577 'right-wl-moderation' => 'Moderacija komentarow k přinoškam Wikilog',
1559 - 'wikilog' => 'Wikiprotokole',
 1578+ 'wikilog-specialwikilog-title' => 'Wikiprotokole',
15601579 'wikilog-specialwikilog' => 'Wikilog',
15611580 'wikilog-log-pagename' => 'Protokol akcijow Wikiloga',
15621581 'wikilog-log-pagetext' => 'Deleka je lisćina wikilogowych akcijow.',
@@ -1681,7 +1700,7 @@
16821701 'wikilog-auto' => 'Automatikus wikinapló',
16831702 'right-wl-postcomment' => 'Hozzászólások írása a wikinapló bejegyzésekhez',
16841703 'right-wl-moderation' => 'wikinapló bejegyzés hozzászólásainak moderálása',
1685 - 'wikilog' => 'Wikinaplók',
 1704+ 'wikilog-specialwikilog-title' => 'Wikinaplók',
16861705 'wikilog-specialwikilog' => 'Wikinapló',
16871706 'wikilog-log-pagename' => 'Wikinapló-műveletek naplója',
16881707 'wikilog-log-pagetext' => 'Alább látható a wikinaplón végzett műveletek listája.',
@@ -1806,7 +1825,7 @@
18071826 'wikilog-auto' => 'Wikilog Auto',
18081827 'right-wl-postcomment' => 'Lassar commentos in articulos wikilog',
18091828 'right-wl-moderation' => 'Moderation de commentos de articulos wikilog',
1810 - 'wikilog' => 'Wikilogs',
 1829+ 'wikilog-specialwikilog-title' => 'Wikilogs',
18111830 'wikilog-specialwikilog' => 'Wikilog',
18121831 'wikilog-log-pagename' => 'Registro de actiones wikilog',
18131832 'wikilog-log-pagetext' => 'Seque un lista de actiones wikilog.',
@@ -1931,7 +1950,7 @@
19321951 'wikilog-auto' => 'Wikilog Auto',
19331952 'right-wl-postcomment' => 'Mengirim komentar untuk artikel wikilog',
19341953 'right-wl-moderation' => 'Memoderasi komentar artikel wikilog',
1935 - 'wikilog' => 'Wikilog',
 1954+ 'wikilog-specialwikilog-title' => 'Wikilog',
19361955 'wikilog-specialwikilog' => 'Wikilog',
19371956 'wikilog-log-pagename' => 'Log tindakan wikilog',
19381957 'wikilog-log-pagetext' => 'Berikut adalah daftar tindakan wikilog.',
@@ -2057,7 +2076,7 @@
20582077 'wikilog-auto' => 'ウィキログ・オート',
20592078 'right-wl-postcomment' => 'ウィキログの記事にコメントを投稿する',
20602079 'right-wl-moderation' => 'ウィキログ記事のコメントのモデレーション',
2061 - 'wikilog' => 'ウィキログ',
 2080+ 'wikilog-specialwikilog-title' => 'ウィキログ',
20622081 'wikilog-specialwikilog' => 'ウィキログ',
20632082 'wikilog-log-pagename' => 'ウィキログ操作記録',
20642083 'wikilog-log-pagetext' => '以下にウィキログの操作の一覧を示します。',
@@ -2186,7 +2205,7 @@
21872206 'wikilog-auto' => '{{int:Wikilog-wikilog}} (automattesch)',
21882207 'right-wl-postcomment' => 'Aanmärkunge zoh Atikelle vum {{int:Wikilog-wikilog}} afjävve',
21892208 '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',
21912210 'wikilog-specialwikilog' => '{{int:Wikilog-wikilog}}',
21922211 'wikilog-log-pagename' => 'et Logboch met dem {{int:Wikilog-wikilog}} singe Akßjuhne',
21932212 'wikilog-log-pagetext' => 'Heh dronger kütt en Leß met dem {{int:Wikilog-wikilog}} sing Akßjuhne.',
@@ -2307,7 +2326,7 @@
23082327 */
23092328 $messages['lb'] = array(
23102329 'wikilog-auto' => 'Wikilog Auto',
2311 - 'wikilog' => 'Wikilogs',
 2330+ 'wikilog-specialwikilog-title' => 'Wikilogs',
23122331 'wikilog-specialwikilog' => 'Wikilog',
23132332 'wikilog-log-cmt-approve' => 'approuvéiert Bemierkung [[$1]]',
23142333 'wikilog-log-cmt-reject' => 'refuséiert Bemierkung [[$1]]',
@@ -2410,7 +2429,7 @@
24112430 * @author Bjankuloski06
24122431 */
24132432 $messages['mk'] = array(
2414 - 'wikilog' => 'Викидневници',
 2433+ 'wikilog-specialwikilog-title' => 'Викидневници',
24152434 'wikilog-specialwikilog' => 'Викидневник',
24162435 'wikilog-post-count-all' => 'Има вкупно {{PLURAL:$1|една статија|$1 статии}}.',
24172436 'wikilog-new-item' => 'Созфај нова статија на викидневникот',
@@ -2466,7 +2485,7 @@
24672486 'wikilog-auto' => 'Wikilog Automatisch',
24682487 'right-wl-postcomment' => 'Reacties op wikilog-artikelen plaatsen',
24692488 'right-wl-moderation' => 'Wikilog-artikelreacties modereren',
2470 - 'wikilog' => 'Wikilogs',
 2489+ 'wikilog-specialwikilog-title' => 'Wikilogs',
24712490 'wikilog-specialwikilog' => 'Wikilog',
24722491 'wikilog-log-pagename' => 'Wikiloghandelingenlogboek',
24732492 'wikilog-log-pagetext' => 'Hieronder treft u een lijst van Wikilog-handelingen aan.',
@@ -2658,7 +2677,7 @@
26592678 'wikilog-auto' => 'Wikilog Auto',
26602679 'right-wl-postcomment' => 'Postar de comentaris suls articles de wikilog',
26612680 'right-wl-moderation' => 'Moderacion dels comentaris suls articles de wikilog',
2662 - 'wikilog' => 'Wikilogs',
 2681+ 'wikilog-specialwikilog-title' => 'Wikilogs',
26632682 'wikilog-specialwikilog' => 'Wikilog',
26642683 'wikilog-log-pagename' => 'Jornal de las accions sus wikilog',
26652684 'wikilog-log-pagetext' => 'Çaijós se tròba una lista de las accions sus wikilog.',
@@ -2793,7 +2812,7 @@
27942813 'wikilog-auto' => 'Wikilog Auto',
27952814 'right-wl-postcomment' => "Gionté dij coment an sj'artìcoj ëd wikilog",
27962815 'right-wl-moderation' => "Moderassion dij coment an sj'artìcoj ëd wikilog",
2797 - 'wikilog' => 'Wikilogs',
 2816+ 'wikilog-specialwikilog-title' => 'Wikilogs',
27982817 'wikilog-specialwikilog' => 'Wikilog',
27992818 'wikilog-log-pagename' => "Argistr ëd j'assion su wikilog",
28002819 'wikilog-log-pagetext' => "Si-sota a-i é na lista dj'assion su wikilog.",
@@ -2919,7 +2938,7 @@
29202939 'wikilog-auto' => 'Wikilog Auto',
29212940 'right-wl-postcomment' => 'Criar comentários em artigos wikilog',
29222941 'right-wl-moderation' => 'Moderação de comentários de artigos wikilog',
2923 - 'wikilog' => 'Wikilogs',
 2942+ 'wikilog-specialwikilog-title' => 'Wikilogs',
29242943 'wikilog-specialwikilog' => 'Wikilog',
29252944 'wikilog-log-pagename' => 'Registo de acções wikilog',
29262945 'wikilog-log-pagetext' => 'Abaixo está uma lista das acções wikilog.',
@@ -3107,7 +3126,7 @@
31083127 'wikilog-auto' => 'Викилог Авто',
31093128 'right-wl-postcomment' => 'оставлять комментарии к статьям викилога',
31103129 'right-wl-moderation' => 'модерировать комментарии к статьям викилога',
3111 - 'wikilog' => 'Викилоги',
 3130+ 'wikilog-specialwikilog-title' => 'Викилоги',
31123131 'wikilog-specialwikilog' => 'Викилог',
31133132 'wikilog-log-pagename' => 'Журнал действий викилога',
31143133 'wikilog-log-pagetext' => 'Ниже приведен список действия викилога.',
@@ -3232,7 +3251,7 @@
32333252 'wikilog-auto' => 'ස්වයං විකි ලඝු සටහන',
32343253 'right-wl-postcomment' => 'විකි ලඝු ලිපිවලට විචාර තැපැල් කරන්න.',
32353254 'right-wl-moderation' => 'විකි ලඝු ලිපි විචාරවල මධ්‍යස්ථතාව',
3236 - 'wikilog' => 'විකි ලඝු සටහන්',
 3255+ 'wikilog-specialwikilog-title' => 'විකි ලඝු සටහන්',
32373256 'wikilog-specialwikilog' => 'විකි ලඝු සටහන',
32383257 'wikilog-log-pagename' => 'විකි ලඝු ක්‍රියාකාරකම් ලඝු සටහන',
32393258 'wikilog-log-pagetext' => 'පහතින් විකි ලඝු ක්‍රියාකාරකම්වල ලැයිස්තුවකි.',
@@ -3357,7 +3376,7 @@
33583377 'wikilog-auto' => 'Wikilog Auto',
33593378 'right-wl-postcomment' => 'Skriv kommentarer till wikilog-artiklar',
33603379 'right-wl-moderation' => 'Moderering av wikilog-artikelkommentarer',
3361 - 'wikilog' => 'Wikilog-bloggar',
 3380+ 'wikilog-specialwikilog-title' => 'Wikilog-bloggar',
33623381 'wikilog-log-pagename' => 'Wikilog händelselogg',
33633382 'wikilog-log-pagetext' => 'Nedan är en lista över wikilog-händelser.',
33643383 'wikilog-log-cmt-approve' => 'godkände kommentar [[$1]]',
@@ -3466,7 +3485,7 @@
34673486 * @author Veeven
34683487 */
34693488 $messages['te'] = array(
3470 - 'wikilog' => 'వికీచిట్టాలు',
 3489+ 'wikilog-specialwikilog-title' => 'వికీచిట్టాలు',
34713490 'wikilog-specialwikilog' => 'వికీచిట్టా',
34723491 'wikilog-tab' => 'వికీచిట్టా',
34733492 'wikilog-tab-title' => 'వికీచిట్టా చర్యలు',
@@ -3518,7 +3537,7 @@
35193538 * @author Manco Capac
35203539 */
35213540 $messages['tr'] = array(
3522 - 'wikilog' => 'Vikiloglar',
 3541+ 'wikilog-specialwikilog-title' => 'Vikiloglar',
35233542 'wikilog-specialwikilog' => 'Vikilog',
35243543 'wikilog-log-pagetext' => 'Aşağıda vikilog hareketlerinin bir listesini bulabilirsiniz.',
35253544 'wikilog-tab' => 'Vikilog',
@@ -3597,7 +3616,7 @@
35983617 * @author פוילישער
35993618 */
36003619 $messages['yi'] = array(
3601 - 'wikilog' => 'וויקילאגן',
 3620+ 'wikilog-specialwikilog-title' => 'וויקילאגן',
36023621 'wikilog-specialwikilog' => 'וויקילאג',
36033622 'wikilog-tab' => 'וויקילאג',
36043623 'wikilog-form-date' => 'דאטע',

Status & tagging log