From 3daabc1221a088b93943c16cb081bd6b4c217cdd Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Mon, 21 Dec 2015 14:28:05 +0100 Subject: [PATCH] Change talkpagelinktext to lowercase The message is used during the string "Some user (Talk | contribs | block)". There, it's used as a general noun, which shouldn't be capitalized. This message has been not capitalized on en.wp since 2009 Bug: T99225 Change-Id: I0c18ada9a6a0224f76e14e52f6da1cbfa81e68dd --- languages/i18n/en.json | 2 +- tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/languages/i18n/en.json b/languages/i18n/en.json index 000b4aec4c..57fb1036e2 100644 --- a/languages/i18n/en.json +++ b/languages/i18n/en.json @@ -192,7 +192,7 @@ "unprotectthispage": "Change protection of this page", "newpage": "New page", "talkpage": "Discuss this page", - "talkpagelinktext": "Talk", + "talkpagelinktext": "talk", "specialpage": "Special page", "personaltools": "Personal tools", "addsection": "+", diff --git a/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php b/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php index 0b877275ee..552dacb7b9 100644 --- a/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php +++ b/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php @@ -212,7 +212,7 @@ class RCCacheEntryFactoryTest extends MediaWikiLangTestCase { ), 'child' => array( 'tag' => 'a', - 'content' => 'Talk', + 'content' => 'talk', ) ), $cacheEntry->usertalklink, -- 2.20.1