From: divadsn Date: Mon, 9 Jan 2017 17:55:55 +0000 (+0000) Subject: Fix inconsistent capitalisation for link labels in EditWatchlist X-Git-Tag: 1.31.0-rc.0~4338^2 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=d49abb0fa7629987964b4f8304b529ac475bc093;p=lhc%2Fweb%2Fwiklou.git Fix inconsistent capitalisation for link labels in EditWatchlist This patch adds a uncapitalized version of 'history_short' message. Bug: T151166 Change-Id: Ifecad060abfd3567952e2d0f41115c03f67751c1 --- diff --git a/includes/specials/SpecialEditWatchlist.php b/includes/specials/SpecialEditWatchlist.php index 347f0c0667..b447271103 100644 --- a/includes/specials/SpecialEditWatchlist.php +++ b/includes/specials/SpecialEditWatchlist.php @@ -629,7 +629,7 @@ class SpecialEditWatchlist extends UnlistedSpecialPage { if ( $title->exists() ) { $tools['history'] = $linkRenderer->makeKnownLink( $title, - $this->msg( 'history_short' )->text(), + $this->msg( 'history_small' )->text(), [], [ 'action' => 'history' ] ); diff --git a/languages/i18n/en.json b/languages/i18n/en.json index a621f1c5b2..3e88216c47 100644 --- a/languages/i18n/en.json +++ b/languages/i18n/en.json @@ -173,6 +173,7 @@ "searcharticle": "Go", "history": "Page history", "history_short": "History", + "history_small": "history", "updatedmarker": "updated since my last visit", "printableversion": "Printable version", "permalink": "Permanent link", diff --git a/languages/i18n/qqq.json b/languages/i18n/qqq.json index da43aef239..4e04f9019b 100644 --- a/languages/i18n/qqq.json +++ b/languages/i18n/qqq.json @@ -358,6 +358,7 @@ "searcharticle": "Button description in the search menu displayed on every page. The \"Search\" button is {{msg-mw|Searchbutton}}.\n{{Identical|Go}}", "history": "{{Identical|Page history}}", "history_short": "Text used on the history tab.\n\n{{Identical|History}}", + "history_small": "Uncapitalized version of {{msg-mw|History short}}.\n\n{{Identical|History}}", "updatedmarker": "Displayed in the page history (of a page you are [[Special:Watchlist|watching]]), when the page has been edited since the last time you visited it. This feature is used if [[mw:Manual:$wgShowUpdatedMarker|$wgShowUpdatedMarker]] is enabled.", "printableversion": "Display name for link in wiki menu that leads to a printable version of a content page. Example: see one but last menu item on [[Main Page]].\n\nSee also:\n* {{msg-mw|Printableversion}}\n* {{msg-mw|Accesskey-t-print}}\n* {{msg-mw|Tooltip-t-print}}\n{{Identical|Printable version}}", "permalink": "Display name for a permanent link to the current revision of a page. When the page is edited, permalink will still link to this revision. Example: Last menu link on [[{{MediaWiki:Mainpage}}]]\n\nSee also:\n* {{msg-mw|Permalink}}\n* {{msg-mw|Accesskey-t-permalink}}\n* {{msg-mw|Tooltip-t-permalink}}\n{{Identical|Permalink}}",