From d49abb0fa7629987964b4f8304b529ac475bc093 Mon Sep 17 00:00:00 2001 From: divadsn Date: Mon, 9 Jan 2017 17:55:55 +0000 Subject: [PATCH] Fix inconsistent capitalisation for link labels in EditWatchlist This patch adds a uncapitalized version of 'history_short' message. Bug: T151166 Change-Id: Ifecad060abfd3567952e2d0f41115c03f67751c1 --- includes/specials/SpecialEditWatchlist.php | 2 +- languages/i18n/en.json | 1 + languages/i18n/qqq.json | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) 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}}", -- 2.20.1