From: Reedy Date: Mon, 4 Sep 2017 16:25:34 +0000 (+0100) Subject: Fix you -> your in 'pagedata-text' message X-Git-Tag: 1.31.0-rc.0~2223 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=a8c17bbb9910a7387cad09764b828b54487e0caa Fix you -> your in 'pagedata-text' message Bug: T174961 Change-Id: I7cfcfca4decac3e2afc09e58959a001ac13d3d49 --- diff --git a/languages/i18n/en.json b/languages/i18n/en.json index f884e94011..a22e3f016a 100644 --- a/languages/i18n/en.json +++ b/languages/i18n/en.json @@ -4371,7 +4371,7 @@ "undelete-cantedit": "You cannot undelete this page as you are not allowed to edit this page.", "undelete-cantcreate": "You cannot undelete this page as there is no existing page with this name and you are not allowed to create this page.", "pagedata-title": "Page data", - "pagedata-text": "This page provides a data interface to pages. Please provide the page title in the URL, using subpage syntax.\n* Content negotiation applies based on you client's Accept header. This means that the page data will be provided in the format preferred by your client.", + "pagedata-text": "This page provides a data interface to pages. Please provide the page title in the URL, using subpage syntax.\n* Content negotiation applies based on your client's Accept header. This means that the page data will be provided in the format preferred by your client.", "pagedata-not-acceptable": "No matching format found. Supported MIME types: $1", "pagedata-bad-title": "Invalid title: $1." } diff --git a/tests/phpunit/includes/specials/SpecialPageDataTest.php b/tests/phpunit/includes/specials/SpecialPageDataTest.php index c93fe479c9..3d0d344173 100644 --- a/tests/phpunit/includes/specials/SpecialPageDataTest.php +++ b/tests/phpunit/includes/specials/SpecialPageDataTest.php @@ -140,7 +140,7 @@ class SpecialPageDataTest extends SpecialPageTestBase { list( $output, ) = $this->executeSpecialPage( '', $request ); $this->assertContains( - "Content negotiation applies based on you client's Accept header.", + "Content negotiation applies based on your client's Accept header.", $output, "output" );