Bartosz Dziewoński has uploaded a new change for review.
https://gerrit.wikimedia.org/r/241654
Change subject: Improve brevity of Special:MovePage form and its description
......................................................................
Improve brevity of Special:MovePage form and its description
* Remove the fake "Move page:" field in the form, the page name is
already shown in the <h1> title.
* Move the information that "This page has a talk page..." next to the
checkbox it affects, hidden behind a clickable help icon.
Bug: T113953
Change-Id: I7bdfeb83979920e0c980db5d1b331bbfd83c6a5a
---
M includes/specials/SpecialMovepage.php
M languages/i18n/en.json
M languages/i18n/qqq.json
3 files changed, 14 insertions(+), 30 deletions(-)
git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core
refs/changes/54/241654/1
diff --git a/includes/specials/SpecialMovepage.php
b/includes/specials/SpecialMovepage.php
index 680a8b8..6e52f53 100644
--- a/includes/specials/SpecialMovepage.php
+++ b/includes/specials/SpecialMovepage.php
@@ -142,8 +142,6 @@
$this->getSkin()->setRelevantTitle( $this->oldTitle );
- $oldTitleLink = Linker::link( $this->oldTitle );
-
$out = $this->getOutput();
$out->setPageTitle( $this->msg( 'move-page',
$this->oldTitle->getPrefixedText() ) );
$out->addModules( 'mediawiki.special.movePage' );
@@ -230,10 +228,6 @@
$hasRedirects = false;
}
- if ( $considerTalk ) {
- $out->addWikiMsg( 'movepagetalktext' );
- }
-
if ( count( $err ) ) {
$out->addHTML( "<div class='error'>\n" );
$action_desc = $this->msg( 'action-move' )->plain();
@@ -303,16 +297,6 @@
$fields = array();
$fields[] = new OOUI\FieldLayout(
- new OOUI\LabelWidget( array(
- 'label' => new OOUI\HtmlSnippet(
"<strong>$oldTitleLink</strong>" )
- ) ),
- array(
- 'label' => $this->msg( 'movearticle' )->text(),
- 'align' => 'top',
- )
- );
-
- $fields[] = new OOUI\FieldLayout(
new MediaWiki\Widget\ComplexTitleInputWidget( array(
'id' => 'wpNewTitle',
'namespace' => array(
@@ -331,7 +315,7 @@
'infusable' => true,
) ),
array(
- 'label' => $this->msg( 'newtitle' )->text(),
+ 'label' => $this->msg( 'move-new-title'
)->text(),
'align' => 'top',
)
);
@@ -360,7 +344,9 @@
) ),
array(
'label' => $this->msg( 'movetalk'
)->text(),
+ 'help' => new OOUI\HtmlSnippet(
$this->msg( 'movepagetalktext' )->parseAsBlock() ),
'align' => 'inline',
+ 'infusable' => true,
)
);
}
diff --git a/languages/i18n/en.json b/languages/i18n/en.json
index 2159313..6c3150f 100644
--- a/languages/i18n/en.json
+++ b/languages/i18n/en.json
@@ -2257,8 +2257,7 @@
"move-page-legend": "Move page",
"movepagetext": "Using the form below will rename a page, moving all of
its history to the new name.\nThe old title will become a redirect page to the
new title.\nYou can update redirects that point to the original title
automatically.\nIf you choose not to, be sure to check for
[[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken
redirects]].\nYou are responsible for making sure that links continue to point
where they are supposed to go.\n\nNote that the page will <strong>not</strong>
be moved if there is already a page at the new title, unless the latter is a
redirect and has no past edit history.\nThis means that you can rename a page
back to where it was renamed from if you make a mistake, and you cannot
overwrite an existing page.\n\n<strong>Warning!</strong>\nThis can be a drastic
and unexpected change for a popular page;\nplease be sure you understand the
consequences of this before proceeding.",
"movepagetext-noredirectfixer": "Using the form below will rename a
page, moving all of its history to the new name.\nThe old title will become a
redirect page to the new title.\nBe sure to check for
[[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken
redirects]].\nYou are responsible for making sure that links continue to point
where they are supposed to go.\n\nNote that the page will <strong>not</strong>
be moved if there is already a page at the new title, unless it is a redirect
and has no past edit history.\nThis means that you can rename a page back to
where it was renamed from if you make a mistake, and you cannot overwrite an
existing page.\n\n<strong>Warning!</strong>\nThis can be a drastic and
unexpected change for a popular page;\nplease be sure you understand the
consequences of this before proceeding.",
- "movepagetalktext": "The associated talk page will be automatically
moved along with it <strong>unless:</strong>\n*A non-empty talk page already
exists under the new name, or\n*You uncheck the box below.\n\nIn those cases,
you will have to move or merge the page manually if desired.",
- "movearticle": "Move page:",
+ "movepagetalktext": "If you check this box, the associated talk page
will be automatically moved to new title, unless a non-empty talk page already
exists there.\n\nIn this case, you will have to move or merge the page manually
if desired.",
"moveuserpage-warning": "<strong>Warning:</strong> You are about to
move a user page. Please note that only the page will be moved and the user
will <em>not</em> be renamed.",
"movecategorypage-warning": "<strong>Warning:</strong> You are about to
move a category page. Please note that only the page will be moved and any
pages in the old category will <em>not</em> be recategorized into the new one.",
"movenologintext": "You must be a registered user and
[[Special:UserLogin|logged in]] to move a page.",
@@ -2268,7 +2267,7 @@
"cant-move-to-user-page": "You do not have permission to move a page to
a user page (except to a user subpage).",
"cant-move-category-page": "You do not have permission to move category
pages.",
"cant-move-to-category-page": "You do not have permission to move a
page to a category page.",
- "newtitle": "To new title:",
+ "move-new-title": "New title:",
"move-watch": "Watch source page and target page",
"movepagebtn": "Move page",
"pagemovedsub": "Move succeeded",
diff --git a/languages/i18n/qqq.json b/languages/i18n/qqq.json
index 848e709..24ddf17 100644
--- a/languages/i18n/qqq.json
+++ b/languages/i18n/qqq.json
@@ -2427,11 +2427,10 @@
"lockedbyandtime": "Used as part of the message when a database is
locked through [[Special:LockDB]]. Parameters:\n* $1 is the user that locked
the database.\n* $2 is the date on which the lock was made\n* $3 is the time at
which the lock was made",
"move-page": "Used as page title of [[Special:MovePage]] to move
pages.\n\nSee example: [[Special:MovePage/Portal:En]].\n\nParameters:\n* $1 -
the name of the page to be moved (without link)\n{{Identical|Move}}",
"movepage-summary": "{{doc-specialpagesummary|movepage}}",
- "move-page-legend": "Legend of the fieldset around the input form of
[[Special:MovePage/testpage]].\n\nSee also:\n* {{msg-mw|movearticle|label for
old title}}\n* {{msg-mw|newtitle|label for new title}}\n*
{{msg-mw|movereason|label for textarea}}\n* {{msg-mw|movetalk|label for
checkbox}}\n* {{msg-mw|move-leave-redirect|label for checkbox}}\n*
{{msg-mw|fix-double-redirects|label for checkbox}}\n*
{{msg-mw|move-subpages|label for checkbox}}\n*
{{msg-mw|move-talk-subpages|label for checkbox}}\n* {{msg-mw|move-watch|label
for checkbox}}\n{{Identical|Move page}}",
+ "move-page-legend": "Legend of the fieldset around the input form of
[[Special:MovePage/testpage]].\n\nSee also:\n* {{msg-mw|move-new-title|label
for new title}}\n* {{msg-mw|movereason|label for textarea}}\n*
{{msg-mw|movetalk|label for checkbox}}\n* {{msg-mw|move-leave-redirect|label
for checkbox}}\n* {{msg-mw|fix-double-redirects|label for checkbox}}\n*
{{msg-mw|move-subpages|label for checkbox}}\n*
{{msg-mw|move-talk-subpages|label for checkbox}}\n* {{msg-mw|move-watch|label
for checkbox}}\n{{Identical|Move page}}",
"movepagetext": "Introduction shown when moving a page
([[Special:MovePage]]).\n\nSpecial pages mentioned: {{msg-mw|Doubleredirects}},
{{msg-mw|Brokenredirects}}\n\nSee also:\n*
{{msg-mw|Movepagetext-noredirectfixer}}",
"movepagetext-noredirectfixer": "A variant of the following message
''Movepagetext'' displayed when the automatic redirect fixer is not
enabled.\n\nSpecial pages mentioned: {{msg-mw|Doubleredirects}},
{{msg-mw|Brokenredirects}}\n\nSee also:\n* {{msg-mw|Movepagetext}}",
"movepagetalktext": "Text on the special 'Move page'. This text only
appears if the talk page is not empty.",
- "movearticle": "The text before the name of the page that you are
moving. Can be translated as \"Page that is going to be moved\". Used in
[[Special:MovePage]].\n\nSee also:\n* {{msg-mw|move-page-legend|legend for the
form}}\n* {{msg-mw|newtitle|label for new title}}\n* {{msg-mw|movereason|label
for textarea}}\n* {{msg-mw|movetalk|label for checkbox}}\n*
{{msg-mw|move-leave-redirect|label for checkbox}}\n*
{{msg-mw|fix-double-redirects|label for checkbox}}\n*
{{msg-mw|move-subpages|label for checkbox}}\n*
{{msg-mw|move-talk-subpages|label for checkbox}}\n* {{msg-mw|move-watch|label
for checkbox}}\n{{Identical|Move page}}",
"moveuserpage-warning": "Used as warning in [[Special:MovePage]], when
moving a user page.",
"movecategorypage-warning": "Used as warning in [[Special:MovePage]],
when moving a category page.",
"movenologintext": "Text of message on special page 'Permissions
Errors', which appears when somebody tries to move a page without being logged
in.\n\nSee also:\n* {{msg-mw|cant-move-user-page}}\n*
{{msg-mw|cant-move-to-user-page}}\n* {{msg-mw|cant-move-category-page}}\n*
{{msg-mw|cant-move-to-category-page}}\n* {{msg-mw|movenotallowedfile}}\n*
{{msg-mw|movenotallowed}}",
@@ -2441,8 +2440,8 @@
"cant-move-to-user-page": "Used as error message.\n\nSee also:\n*
{{msg-mw|cant-move-user-page}}\n* {{msg-mw|cant-move-category-page}}\n*
{{msg-mw|cant-move-to-category-page}}\n* {{msg-mw|movenotallowedfile}}\n*
{{msg-mw|movenotallowed}}\n* {{msg-mw|movenologintext}}",
"cant-move-category-page": "Used as error message.\n\nSee also:\n*
{{msg-mw|cant-move-user-page}}\n* {{msg-mw|cant-move-to-user-page}}\n*
{{msg-mw|cant-move-to-category-page}}\n* {{msg-mw|movenotallowedfile}}\n*
{{msg-mw|movenotallowed}}\n* {{msg-mw|movenologintext}}",
"cant-move-to-category-page": "Used as error message.\n\nSee also:\n*
{{msg-mw|cant-move-user-page}}\n* {{msg-mw|cant-move-to-user-page}}\n*
{{msg-mw|cant-move-category-page}}\n* {{msg-mw|movenotallowedfile}}\n*
{{msg-mw|movenotallowed}}\n* {{msg-mw|movenologintext}}",
- "newtitle": "Used in the special page \"[[Special:MovePage]]\". The
text for the inputbox to give the new page title.\n\nSee also:\n*
{{msg-mw|Move-page-legend|legend for the form}}\n* {{msg-mw|Movearticle|label
for old title}}\n* {{msg-mw|Movereason|label for textarea}}\n*
{{msg-mw|Movetalk|label for checkbox}}\n* {{msg-mw|Move-leave-redirect|label
for checkbox}}\n* {{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}",
- "move-watch": "The text of the checkbox to watch the pages you are
moving from and to. If checked, both the destination page and the original page
will be added to the watchlist, even if you decide not to leave a redirect
behind.\n\nSee also:\n* {{msg-mw|Move-page-legend|legend for the form}}\n*
{{msg-mw|Movearticle|label for old title}}\n* {{msg-mw|Newtitle|label for new
title}}\n* {{msg-mw|Movereason|label for textarea}}\n* {{msg-mw|Movetalk|label
for checkbox}}\n* {{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}",
+ "move-new-title": "Used in the special page \"[[Special:MovePage]]\".
The text for the inputbox to give the new page title.\n\nSee also:\n*
{{msg-mw|Move-page-legend|legend for the form}}\n* {{msg-mw|Movereason|label
for textarea}}\n* {{msg-mw|Movetalk|label for checkbox}}\n*
{{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}",
+ "move-watch": "The text of the checkbox to watch the pages you are
moving from and to. If checked, both the destination page and the original page
will be added to the watchlist, even if you decide not to leave a redirect
behind.\n\nSee also:\n* {{msg-mw|Move-page-legend|legend for the form}}\n*
{{msg-mw|move-new-title|label for new title}}\n* {{msg-mw|Movereason|label for
textarea}}\n* {{msg-mw|Movetalk|label for checkbox}}\n*
{{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}",
"movepagebtn": "Button label on the special 'Move
page'.\n\n{{Identical|Move page}}",
"pagemovedsub": "Message displayed as aheader of the body, after
successfully moving a page from source to target name.",
"movepage-moved": "Message displayed after successfully moving a page
from source to target name.\n\nParameters:\n* $1 - the source page as a link
with display name\n* $2 - the target page as a link with display name\n* $3 -
(optional) the source page name without a link\n* $4 - (optional) the target
page name without a link\nSee also:\n* {{msg-mw|Movepage-moved-redirect}}\n*
{{msg-mw|Movepage-moved-noredirect}}",
@@ -2450,9 +2449,9 @@
"movepage-moved-noredirect": "The message is shown after pagemove if
checkbox \"{{int:move-leave-redirect}}\" was unselected before moving.\n\nSee
also:\n* {{msg-mw|Movepage-moved}}\n* {{msg-mw|Movepage-moved-redirect}}",
"articleexists": "Used as error message when moving a page.\n\nSee
also:\n* {{msg-mw|Badarticleerror}}\n* {{msg-mw|Bad-target-model}}",
"cantmove-titleprotected": "Used as error message when moving a page.",
- "movetalk": "The text of the checkbox to watch the associated talk page
to the page you are moving. This only appears when the talk page is not empty.
Used in [[Special:MovePage]].\n\nSee also:\n* {{msg-mw|Move-page-legend|legend
for the form}}\n* {{msg-mw|Movearticle|label for old title}}\n*
{{msg-mw|Newtitle|label for new title}}\n* {{msg-mw|Movereason|label for
textarea}}\n* {{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}",
- "move-subpages": "The text of an option on the special page
[[Special:MovePage|MovePage]]. If this option is ticked, any subpages will be
moved with the main page to a new title.\n\nParameters:\n* $1 - ...\nSee
also:\n* {{msg-mw|Move-page-legend|legend for the form}}\n*
{{msg-mw|Movearticle|label for old title}}\n* {{msg-mw|Newtitle|label for new
title}}\n* {{msg-mw|Movereason|label for textarea}}\n* {{msg-mw|Movetalk|label
for checkbox}}\n* {{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}",
- "move-talk-subpages": "The text of an option on the special page
[[Special:MovePage|MovePage]]. If this option is ticked, any talk subpages will
be moved with the talk page to a new title.\n\nParameters:\n* $1 - ...\nSee
also:\n* {{msg-mw|Move-page-legend|legend for the form}}\n*
{{msg-mw|Movearticle|label for old title}}\n* {{msg-mw|Newtitle|label for new
title}}\n* {{msg-mw|Movereason|label for textarea}}\n* {{msg-mw|Movetalk|label
for checkbox}}\n* {{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label for
checkbox}}",
+ "movetalk": "The text of the checkbox to watch the associated talk page
to the page you are moving. This only appears when the talk page is not empty.
Used in [[Special:MovePage]].\n\nSee also:\n* {{msg-mw|Move-page-legend|legend
for the form}}\n* {{msg-mw|move-new-title|label for new title}}\n*
{{msg-mw|Movereason|label for textarea}}\n* {{msg-mw|Move-leave-redirect|label
for checkbox}}\n* {{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}",
+ "move-subpages": "The text of an option on the special page
[[Special:MovePage|MovePage]]. If this option is ticked, any subpages will be
moved with the main page to a new title.\n\nParameters:\n* $1 - ...\nSee
also:\n* {{msg-mw|Move-page-legend|legend for the form}}\n*
{{msg-mw|move-new-title|label for new title}}\n* {{msg-mw|Movereason|label for
textarea}}\n* {{msg-mw|Movetalk|label for checkbox}}\n*
{{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}",
+ "move-talk-subpages": "The text of an option on the special page
[[Special:MovePage|MovePage]]. If this option is ticked, any talk subpages will
be moved with the talk page to a new title.\n\nParameters:\n* $1 - ...\nSee
also:\n* {{msg-mw|Move-page-legend|legend for the form}}\n*
{{msg-mw|move-new-title|label for new title}}\n* {{msg-mw|Movereason|label for
textarea}}\n* {{msg-mw|Movetalk|label for checkbox}}\n*
{{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label for
checkbox}}",
"movepage-page-exists": "Used as error message when moving page.\n* $1
- page title",
"movepage-page-moved": "Used as success message when moving
page.\n\nCan be followed by {{msg-mw|Movepage-max-pages}}.\n\nParameters:\n* $1
- old page title (with link)\n* $2 - new page title (with link)\nSee also:\n*
{{msg-mw|Movepage-page-unmoved}}",
"movepage-page-unmoved": "Used as error message when moving page.
Parameters:\n* $1 - old page title (with link)\n* $2 - new page title (with
link)\nSee also:\n* {{msg-mw|Movepage-page-moved}}",
@@ -2462,7 +2461,7 @@
"movesubpage": "This is a section header on [[Special:MovePage]], below
is a list of subpages.\n\nParameters:\n* $1 - number of subpages\nSee also:\n*
{{msg-mw|movenosubpage|without subpage}}\n* {{msg-mw|movesubpagetext|with
subpages}}",
"movesubpagetext": "Used in [[Special:MovePage]]. Parameters:\n* $1 -
number of subpages\nSee also:\n* {{msg-mw|movesubpage|section header}}\n*
{{msg-mw|movenosubpage|without subpage}}",
"movenosubpage": "See also:\n* {{msg-mw|movesubpage|section header}}\n*
{{msg-mw|movenosubpage|without subpage}}\n* {{msg-mw|movesubpagetext|with
subpages}}",
- "movereason": "Used in [[Special:MovePage]]. The text for the inputbox
to give a reason for the page move.\n\nSee also:\n*
{{msg-mw|Move-page-legend|legend for the form}}\n* {{msg-mw|Movearticle|label
for old title}}\n* {{msg-mw|Newtitle|label for new title}}\n*
{{msg-mw|Movetalk|label for checkbox}}\n* {{msg-mw|Move-leave-redirect|label
for checkbox}}\n* {{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}\n{{Identical|Reason}}",
+ "movereason": "Used in [[Special:MovePage]]. The text for the inputbox
to give a reason for the page move.\n\nSee also:\n*
{{msg-mw|Move-page-legend|legend for the form}}\n*
{{msg-mw|move-new-title|label for new title}}\n* {{msg-mw|Movetalk|label for
checkbox}}\n* {{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Fix-double-redirects|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}\n{{Identical|Reason}}",
"move-redirect-text": "{{ignored}}The text that's added to a redirected
page when that redirect is created.",
"category-move-redirect-override": "{{ignored}}The text that's added to
a redirected category page when that redirect is created.",
"revertmove": "{{Identical|Revert}}",
@@ -2481,8 +2480,8 @@
"nonfile-cannot-move-to-file": "Used as error message.\n\nSee also:\n*
{{msg-mw|Imagenocrossnamespace}}\n* {{msg-mw|Nonfile-cannot-move-to-file}}",
"imagetypemismatch": "Used as error message.\n\nSee also:\n*
{{msg-mw|imageinvalidfilename}}\n* {{msg-mw|imagenocrossnamespace}}",
"imageinvalidfilename": "Used as error message.\n\nSee also:\n*
{{msg-mw|imagetypemismatch}}\n* {{msg-mw|imagenocrossnamespace}}",
- "fix-double-redirects": "This is a checkbox in [[Special:MovePage]]
which allows to move all redirects from the old title to the new title. Used in
[[Special:MovePage]].\n\nSee also:\n* {{msg-mw|Move-page-legend|legend for the
form}}\n* {{msg-mw|Movearticle|label for old title}}\n* {{msg-mw|Newtitle|label
for new title}}\n* {{msg-mw|Movereason|label for textarea}}\n*
{{msg-mw|Movetalk|label for checkbox}}\n* {{msg-mw|Move-leave-redirect|label
for checkbox}}\n* {{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}",
- "move-leave-redirect": "Used as label for checkbox in the Move Pages
form on [[Special:MovePage]].\n\nSee also:\n* {{msg-mw|move-page-legend|legend
for the form}}\n* {{msg-mw|movearticle|label for old title}}\n*
{{msg-mw|newtitle|label for new title}}\n* {{msg-mw|movereason|label for
textarea}}\n* {{msg-mw|movetalk|label for checkbox}}\n*
{{msg-mw|fix-double-redirects|label for checkbox}}\n*
{{msg-mw|move-subpages|label for checkbox}}\n*
{{msg-mw|move-talk-subpages|label for checkbox}}\n* {{msg-mw|move-watch|label
for checkbox}}",
+ "fix-double-redirects": "This is a checkbox in [[Special:MovePage]]
which allows to move all redirects from the old title to the new title. Used in
[[Special:MovePage]].\n\nSee also:\n* {{msg-mw|Move-page-legend|legend for the
form}}\n* {{msg-mw|move-new-title|label for new title}}\n*
{{msg-mw|Movereason|label for textarea}}\n* {{msg-mw|Movetalk|label for
checkbox}}\n* {{msg-mw|Move-leave-redirect|label for checkbox}}\n*
{{msg-mw|Move-subpages|label for checkbox}}\n*
{{msg-mw|Move-talk-subpages|label for checkbox}}\n* {{msg-mw|Move-watch|label
for checkbox}}",
+ "move-leave-redirect": "Used as label for checkbox in the Move Pages
form on [[Special:MovePage]].\n\nSee also:\n* {{msg-mw|move-page-legend|legend
for the form}}\n* {{msg-mw|move-new-title|label for new title}}\n*
{{msg-mw|movereason|label for textarea}}\n* {{msg-mw|movetalk|label for
checkbox}}\n* {{msg-mw|fix-double-redirects|label for checkbox}}\n*
{{msg-mw|move-subpages|label for checkbox}}\n*
{{msg-mw|move-talk-subpages|label for checkbox}}\n* {{msg-mw|move-watch|label
for checkbox}}",
"protectedpagemovewarning": "{{Related|Semiprotectedpagewarning}}",
"semiprotectedpagemovewarning": "{{Related|Semiprotectedpagewarning}}",
"move-over-sharedrepo": "Notice when a file with that filename already
exists on a shared repository, such as Wikimedia Commons.\n\nParameters:\n* $1
- the destination page title",
--
To view, visit https://gerrit.wikimedia.org/r/241654
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I7bdfeb83979920e0c980db5d1b331bbfd83c6a5a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Bartosz Dziewoński <[email protected]>
_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits