mediawiki-extensions-Visual.../modules/ve-mw/i18n/qqq.json

244 lines
35 KiB
JSON
Raw Normal View History

{
"@metadata": {
"authors": [
"Amire80",
"Beta16",
"Erik Moeller",
"Jdforrester",
"Lloffiwr",
"Mooeypoo",
"Mormegil",
"Nike",
"PoLuX124",
"Purodha",
"Raymond",
"Sagan",
"Sayak Sarkar",
"Shirayuki",
"Siebrand",
"Trevor Parscal",
"UV",
"Arjunaraoc"
]
},
"accesskey-ca-editsource": "{{optional}}",
"accesskey-ca-ve-edit": "{{Ignore}}",
"tooltip-ca-createsource": "Tooltip of the {{msg-mw|Visualeditor-ca-createsource}} tab, used if the page does not exist.\n\nSee also:\n* {{msg-mw|Tooltip-ca-editsource}} - tooltip of the {{msg-mw|Visualeditor-ca-editsource}} tab, used if the page already exists",
"tooltip-ca-editsource": "Tooltip of the {{msg-mw|Visualeditor-ca-editsource}} tab, used if the page already exists.\n\nSee also:\n* {{msg-mw|Tooltip-ca-createsource}} - tooltip of the {{msg-mw|Visualeditor-ca-createsource}} tab, used if the page does not exist",
"tooltip-ca-ve-edit": "Tooltip of the dedicated VisualEditor \"Edit\" tab.",
"visualeditor-advancedsettings-tool": "Tool for opening the advanced settings section of the meta dialog.\n{{Identical|Advanced settings}}",
"visualeditor-beta-appendix": "Used in {{msg-mw|Guidedtour-tour-firsteditve-edit-page-description}}.\n{{Identical|Beta}}",
"visualeditor-beta-label": "Text of tool in the toolbar that highlights that VisualEditor is still in beta.\n{{Identical|Beta}}",
"visualeditor-beta-warning": "Note shown when user clicks on 'beta' label in VisualEditor, warning users that the software may have issues.\n\nRefers to {{msg-mw|Visualeditor-ca-editsource}}.",
"visualeditor-browserwarning": "Edit notice shown when VisualEditor loads, warning users that their browser is not officially supported.",
"visualeditor-ca-createsource": "Text for the create source link in the tab dropdown, if the page doesn't exist. It's shown next to the message {{msg-mw|vector-view-create}}, so they should be similar (for example, use a similar translation for \"Create\").\n\nIf the page exists, the following link text is used: {{msg-mw|Visualeditor-ca-editsource}}",
"visualeditor-ca-editsource": "Text for the \"Edit source\" tab, if the page exists.\n\nIf the page doesn't exist, the following link text is used: {{msg-mw|Visualeditor-ca-createsource}}\n\nUsed in:\n* {{msg-mw|Visualeditor-beta-warning}}\n* {{msg-mw|Visualeditor-wikitext-warning}}\n{{Identical|Edit source}}",
"visualeditor-ca-editsource-section": "Used as link text for \"edit source\" mode of section edit links.\n\nCorresponds to the {{msg-mw|editsection}} message for default mode.\n{{Identical|Edit source}}",
"visualeditor-ca-editlocaldescriptionsource": "Text for the \"Edit local description source\" tab, if the page exists and the page is the local description of a file in a foreign repository (e.g. Wikimedia Commons).",
"visualeditor-ca-createlocaldescriptionsource": "Text for the \"Create local description source\" tab, if the page exists and the page is the local description of a file in a foreign repository (e.g. Wikimedia Commons).",
"visualeditor-ca-ve-create": "Link text of the dedicated VisualEditor \"Create\" tab.\n{{Identical|VisualEditor}}",
"visualeditor-ca-ve-edit": "Link text of the dedicated VisualEditor {{msg-mw|Edit}} tab.\n{{Identical|VisualEditor}}",
"visualeditor-ca-ve-edit-section": "{{Identical|VisualEditor}}",
"visualeditor-categories-tool": "Tool for opening the categories section of the meta dialog.\n{{Identical|Category}}",
"visualeditor-cite-tool-name-web": "Title of tool that inserts a citation for a website.\n{{Identical|Website}}",
"visualeditor-cite-tool-name-book": "Title of tool that inserts a citation for a book.\n{{Identical|Book}}",
"visualeditor-cite-tool-name-news": "Title of tool that inserts a citation for a news.\n{{Identical|Newspaper}}",
Ultra-mega-hyper-citation editing on crack Objectives: * Allow users on-wiki to create tools and dialogs for citation templates of their choosing * Allow editing of citation templates directly, without having to go through the reference dialog * Provide citation template tools within reference editing that use the same titles and icons as the citation tools do, but don't wrap the inserted content in a ref tag Changes: * Reference list was cloning the DOM element it was inserting into its view before the generated content node could finish rendering, so it never ended up showing the finished rendering in the reference list * Documenting hack about use of reference list node's destroy method, and how we are depending on destroy not canceling generated content rendering * Introduced reference model * Added saving/updating method to transclusion model * Added getPartsList method to dm transclusion node, which caches the result and invalidates the cache on update * Added citation dialog, which extends transclusion dialog * Added cite group to toolbars, cite-template in reference dialog toolbar * Factored out getting the node to edit and saving changes procedures in transclusion dialog so they could be extended in citation dialog * Updated uses of autoAdd as per changes in oojs-ui (Ic353f91) * Renamed MWDialogTool file since there was only one tool in it * Expanded TransclusionDialogTool file out since there is now more logic to it * Switched to using ve.dm.MWReferenceModel instead of plain objects in reference search widget Configuration: If you add to MediaWiki:Visualeditor-cite-tool-definition.json the following code you will magically be presented with a delightful array of citation options: [ { "name": "web", "icon": "ref-cite-web", "template": "Cite web" }, { "name": "book", "icon": "ref-cite-book", "template": "Cite book" }, { "name": "news", "icon": "ref-cite-news", "template": "Cite news" }, { "name": "journal", "icon": "ref-cite-journal", "template": "Cite journal" } ] ...or... [ { "name": "any-name", "icon": "any-ooui-icon", "template": "Any template", "title": "Any title text" } ] The title text is derived either from the title property or from the name property by pre-pending the string 'visualeditor-cite-tool-name-' to generate a message key. Titles for 'web', 'book', 'news' and 'journal' are provided. The icon is a normal oo-ui-icon name, and more icons can be added, as usual, by adding a class called .oo-ui-icon-{icon name} to MediaWiki:Common.css. 'ref-cite-web', 'ref-cite-book', 'ref-cite-news' and 'ref-cite-journal' are provided. The template name is simply the name of the template without its namespace prefix. Depends on Ic353f91 in oojs-ui Bug: 50110 Bug: 50768 Change-Id: Id401d973b8d5fe2faec481cc777c17a24fd19dd4
2014-03-21 18:56:46 +00:00
"visualeditor-cite-tool-name-journal": "Title of tool that inserts a citation for a journal",
"visualeditor-desc": "{{desc|name=VisualEditor|url=http://www.mediawiki.org/wiki/Extension:VisualEditor}}",
"visualeditor-descriptionpagelink": "{{doc-important|Do not translate \"Project\"; it is automatically converted to the wiki's project namespace.}}\nName of a page describing the use of VisualEditor in this project.\n\nUsed in:\n* {{msg-mw|Tag-visualeditor}}\n* {{msg-mw|Tag-visualeditor-description}}\n* {{msg-mw|Tag-visualeditor-needcheck}}\n* {{msg-mw|Tag-visualeditor-needcheck-description}}",
"visualeditor-dialog-beta-welcome-action-continue": "Used as label for the Continue button which is used to close the dialog and continue using VisualEditor.\n{{Identical|Continue}}",
"visualeditor-dialog-beta-welcome-content": "Text explaining VisualEditor is in beta.\n\nRefers to {{msg-mw|Visualeditor-help-tool}}.\n\nParameters:\n* $1 - {{msg-mw|Edit}}",
"visualeditor-dialog-beta-welcome-title": "Title of the beta welcome dialog. Parameters:\n* $1 - username or empty string, for GENDER support",
"visualeditor-dialog-citation-insert-citation": "Label for button that closes the citation insertion dialog and inserts the citation",
"visualeditor-dialog-media-alttext-section": "Label for the image alternative text sub-section.",
"visualeditor-dialog-media-content-section": "Label for the image content sub-section.\n{{Identical|Caption}}",
"visualeditor-dialog-media-insert-button": "Used as label for the button.\n{{Identical|Insert media}}",
"visualeditor-dialog-media-insert-title": "Media insert dialog title text.\n{{Identical|Insert media}}",
"visualeditor-dialog-media-page-advanced": "Label for the advanced settings page in the media edit dialog.\n{{Identical|Advanced settings}}",
"visualeditor-dialog-media-page-general": "Label for the general settings page in the media edit dialog.\n{{Identical|General settings}}",
"visualeditor-dialog-media-position-center": "Label for the image position option for aligning to the center.\n{{Related|Visualeditor-dialog-media-position}}\n{{Identical|Center}}",
"visualeditor-dialog-media-position-checkbox": "Label for the position checkbox, denoting whether to use a set float position.",
"visualeditor-dialog-media-position-left": "Label for the image position option for aligning to the left.\n{{Related|Visualeditor-dialog-media-position}}\n{{Identical|Left}}",
"visualeditor-dialog-media-position-none": "Label for the image position option for no alignment.\n{{Related|Visualeditor-dialog-media-position}}\n{{Identical|None}}",
"visualeditor-dialog-media-position-right": "Label for the image position option for aligning to the right.\n{{Related|Visualeditor-dialog-media-position}}\n{{Identical|Right}}",
"visualeditor-dialog-media-position-section": "Label for the image position sub-section.\n\nSee also:\n* {{msg-mw|Visualeditor-dialog-media-position-center}}\n* {{msg-mw|Visualeditor-dialog-media-position-left}}\n* {{msg-mw|Visualeditor-dialog-media-position-none}}\n* {{msg-mw|Visualeditor-dialog-media-position-right}}\n{{Identical|Position}}",
"visualeditor-dialog-media-size-choosecustom": "Label for setting image size to custom dimensions.\n{{Related|Visualeditor-dialog-media-size}}",
"visualeditor-dialog-media-size-choosedefault": "Label for setting image size to wiki default thumbnail dimensions.\n{{Related|Visualeditor-dialog-media-size}}",
"visualeditor-dialog-media-size-choosefull": "Label for setting image size to full size.\n{{Related|Visualeditor-dialog-media-size}}",
"visualeditor-dialog-media-size-originalsize-error": "Error message for failing to retrieve original file size from the API.",
"visualeditor-dialog-media-size-section": "Label for the image size sub-section.\n{{Identical|Image size}}",
"visualeditor-dialog-media-title": "Title for the editing dialog to set how a media item is displayed on the page",
"visualeditor-dialog-media-type-border": "Label for the image type option for bordered image.",
"visualeditor-dialog-media-type-frame": "Label for the image type option for framed image.",
"visualeditor-dialog-media-type-frameless": "Label for the image type option for frameless.",
"visualeditor-dialog-media-type-none": "Label for the image type option for basic image.\n{{Identical|Basic}}",
"visualeditor-dialog-media-type-section": "Label for the image type sub-section.\n\nFollowed by the following buttons:\n* {{msg-mw|Visualeditor-dialog-media-type-thumb}}\n* {{msg-mw|Visualeditor-dialog-media-type-frame}}\n* {{msg-mw|Visualeditor-dialog-media-type-frameless}}\n* {{msg-mw|Visualeditor-dialog-media-type-border}}",
"visualeditor-dialog-media-type-thumb": "Label for the image type option for thumbnail.",
"visualeditor-dialog-meta-advancedsettings-label": "Title for the advanced settings dialog section.\n{{Identical|Advanced settings}}",
"visualeditor-dialog-meta-advancedsettings-section": "Label for the advanced settings dialog section.\n{{Identical|Advanced settings}}",
"visualeditor-dialog-meta-categories-category": "Title of popup for editing category options.\n{{Identical|Category}}",
"visualeditor-dialog-meta-categories-data-label": "Label for the categories sub-section.\n{{Identical|Category}}",
"visualeditor-dialog-meta-categories-defaultsort-label": "Label for field setting the category default sort",
"visualeditor-dialog-meta-categories-hidden": "Text shown on the category popup if the category is hidden",
"visualeditor-dialog-meta-categories-input-matchingcategorieslabel": "Label for hidden suggested category or categories",
"visualeditor-dialog-meta-categories-input-hiddencategorieslabel": "{{Identical|Hidden category}}",
"visualeditor-dialog-meta-categories-input-movecategorylabel": "Label for moving a given category or categories to end of list",
"visualeditor-dialog-meta-categories-input-newcategorylabel": "Label for a suggested uncreated category",
"visualeditor-dialog-meta-categories-input-placeholder": "Placeholder text for category input\n{{Identical|Add category}}",
"visualeditor-dialog-meta-categories-options": "Label for the category options sub-section.\n{{Identical|Options}}",
"visualeditor-dialog-meta-categories-section": "Label for the categories dialog section.\n{{Identical|Category}}",
"visualeditor-dialog-meta-categories-sortkey-label": "Label for setting the page's sort key for a given category",
"visualeditor-dialog-meta-languages-code-label": "Column header for the language links table, giving the language code of the remote wiki\n\t{{Identical|Language code}}",
"visualeditor-dialog-meta-languages-label": "{{Identical|Language}}",
"visualeditor-dialog-meta-languages-link-label": "Column header for the language links table, giving the name of the remote page.\n{{Identical|Linked page}}",
"visualeditor-dialog-meta-languages-name-label": "Column header for the language links table, giving the language name of the remote wiki.\n{{Identical|Language}}",
"visualeditor-dialog-meta-languages-readonlynote": "Text of a note informing users that the language links cannot yet be edited.\n\nSee also:\n* {{msg-mw|Visualeditor-referencelist-missingref}}",
"visualeditor-dialog-meta-languages-section": "Label for the language links dialog section.\n{{Identical|Language}}",
"visualeditor-dialog-meta-settings-index-default": "Label for the option to have default indexing behavior.\n{{Identical|Default}}",
"visualeditor-dialog-meta-settings-index-disable": "Label for the option for indexing to be forced off.\n{{Identical|No}}",
"visualeditor-dialog-meta-settings-index-force": "Label for the option for indexing to be forced on.\n{{Identical|Yes}}",
"visualeditor-dialog-meta-settings-index-label": "Prompt to let the user set the indexing behaviour.",
"visualeditor-dialog-meta-settings-label": "Title for the page settings dialog section.\n\nFollowed by the following labels:\n* {{msg-mw|Visualeditor-dialog-meta-settings-toc-default}}\n* {{msg-mw|Visualeditor-dialog-meta-settings-toc-force}}\n* {{msg-mw|Visualeditor-dialog-meta-settings-toc-disable}}\n{{Identical|Page settings}}",
"visualeditor-dialog-meta-settings-newsectioneditlink-default": "Label for the option to have the namespace's default new section creating link behavior.\n{{Identical|Default}}",
"visualeditor-dialog-meta-settings-newsectioneditlink-disable": "Label for the option to prevent the display of a new section creating link.\n{{Identical|No}}",
"visualeditor-dialog-meta-settings-newsectioneditlink-force": "Label for the option to force the display of a new section creating link.\n{{Identical|Yes}}",
"visualeditor-dialog-meta-settings-newsectioneditlink-label": "Prompt to let the user set the new section creating link behavior.\n\nFollowed by the following buttons:\n* {{msg-mw|Visualeditor-dialog-meta-settings-newsectioneditlink-force}}\n* {{msg-mw|Visualeditor-dialog-meta-settings-newsectioneditlink-default}}\n* {{msg-mw|Visualeditor-dialog-meta-settings-newsectioneditlink-disable}}",
"visualeditor-dialog-meta-settings-noeditsection-label": "Prompt for the checkbox to let the user disable section edit links on the page.",
"visualeditor-dialog-meta-settings-redirect-label": "Label for the checkbox to let the user redirect the page.\n\nFollowed by input box which has the placeholder {{msg-mw|Visualeditor-dialog-meta-settings-redirect-placeholder}}.",
"visualeditor-dialog-meta-settings-redirect-placeholder": "Placeholder for the target search box letting the user redirect the page.\n\nPreceded by the checkbox label {{msg-mw|Visualeditor-dialog-meta-settings-redirect-label}}.",
"visualeditor-dialog-meta-settings-redirect-staticlabel": "Label for the checkbox to let the user stop the redirect being updated on page moves.\n\nPreceded by \"Target page for redirection\" search box.",
"visualeditor-dialog-meta-settings-section": "Label for the page settings dialog section.\n{{Identical|Page settings}}",
"visualeditor-dialog-meta-settings-toc-default": "Label for the default TOC behavior option.\n{{Related|Visualeditor-dialog-meta-settings-toc}}",
"visualeditor-dialog-meta-settings-toc-disable": "Label for the TOC behavior option to never show.\n{{Related|Visualeditor-dialog-meta-settings-toc}}",
"visualeditor-dialog-meta-settings-toc-force": "Label for the TOC behavior option to always show.\n{{Related|Visualeditor-dialog-meta-settings-toc}}",
"visualeditor-dialog-meta-settings-toc-label": "Prompt to let the user set the Table Of Contents (TOC) behaviour.",
"visualeditor-dialog-meta-title": "Text of the title for the meta dialog to set categories, language links and other page settings.\n{{Identical|Options}}",
"visualeditor-dialog-reference-insert-button": "Used as label for the button to insert a new reference.\n{{Identical|Insert reference}}",
"visualeditor-dialog-reference-insert-title": "Reference insert dialog title text.\n{{Identical|Insert reference}}",
"visualeditor-dialog-reference-options-group-label": "Label for the reference group input",
"visualeditor-dialog-reference-options-group-placeholder": "Placeholder for the reference group input",
"visualeditor-dialog-reference-options-name-label": "Label for the reference name input",
"visualeditor-dialog-reference-options-section": "Label for the reference options sub-section.\n{{Identical|Options}}",
"visualeditor-dialog-reference-title": "{{Identical|Reference}}",
"visualeditor-dialog-reference-useexisting-label": "Label for button in reference dialog to insert a re-use of an existing reference",
"visualeditor-dialog-referencelist-insert-button": "Used as label for the button to insert a new references list.",
"visualeditor-dialog-referencelist-title": "{{Identical|References list}}",
"visualeditor-dialog-template-title": "{{Identical|Template}}",
"visualeditor-dialog-transclusion-add-content": "Label for button that adds parameter content to a transclusion.",
"visualeditor-dialog-transclusion-add-param": "Label for button that adds parameter a parameter to a template.\n{{Identical|Add parameter}}",
"visualeditor-dialog-transclusion-add-template": "Label for button that adds parameter a template to a transclusion.\n{{Identical|Add template}}",
"visualeditor-dialog-transclusion-content": "Label for editor of content between transclusion parts.\n{{Identical|Content}}",
"visualeditor-dialog-transclusion-insert-template": "Label for button in the transclusion dialog while in single mode that closes the dialog inserts a template.\n{{Identical|Insert template}}",
"visualeditor-dialog-transclusion-insert-transclusion": "Label for button in the transclusion dialog while in multiple mode that closes the dialog inserts a transclusion",
"visualeditor-dialog-transclusion-loading": "Label for the apply button in the transclusion dialog while it is disabled and loading.\n{{Identical|Loading}}",
"visualeditor-dialog-transclusion-multiple-mode": "Label for button that shows advanced options in transclusion dialog",
"visualeditor-dialog-transclusion-no-template-description": "Message to user that no template information is available for the template.\n\nParameters:\n* $1 - the title of the template\n* $2 - contains attributes for the link to the template's page. e.g. 'target=\"_blank\" href=\"...\"'",
"visualeditor-dialog-transclusion-options": "Label for section with options for templates, content or parameters.\n{{Identical|Options}}",
"visualeditor-dialog-transclusion-placeholder": "Label for section with options for adding a new template to a multi part transclusion",
"visualeditor-dialog-transclusion-remove-content": "Label for button that removes content between transclusion parts",
"visualeditor-dialog-transclusion-remove-param": "Label for button that removes a parameter from a template",
"visualeditor-dialog-transclusion-remove-template": "Label for button that removes a template from a transclusion.\n{{Identical|Remove template}}",
"visualeditor-dialog-transclusion-required-parameter": "Tooltip for required parameter indicator",
"visualeditor-dialog-transclusion-single-mode": "Label for button that hides advanced options in transclusion dialog",
"visualeditor-dialog-transclusion-title": "{{Identical|Transclusion}}",
"visualeditor-dialogbutton-media-tooltip": "{{Identical|Media}}",
"visualeditor-dialogbutton-meta-tooltip": "{{Identical|Page settings}}",
"visualeditor-dialogbutton-reference-tooltip": "{{Identical|Reference}}",
"visualeditor-dialogbutton-referencelist-tooltip": "Tooltip for button for dialog that inserts the references list object (<code><nowiki>Reference list</nowiki></code>).\n{{Identical|References list}}",
"visualeditor-dialogbutton-template-tooltip": "{{Identical|Template}}",
"visualeditor-dialogbutton-transclusion-tooltip": "{{Identical|Transclusion}}",
"visualeditor-diff-nochanges": "Message displayed in the diff view when no changes were detected",
"visualeditor-differror": "Text shown when the editor fails to load the diff.\n\nParameters:\n* $1 is an error message, in English.",
"visualeditor-editconflict": "Alert message when saving a page causes an edit conflict",
"visualeditor-editnotices-tool": "Text of tool in the toolbar that shows edit notices (such as [[MediaWiki:Editnotice-0]] and [[MediaWiki:Editnotice-8/en]]) as a pop-up.\n\nParameters:\n* $1 - the number of notices",
"visualeditor-editnotices-tooltip": "Text of tooltip for the tool in the toolbar that shows edit notices (i.e. “messages about the editing”), e.g. the “you are not currently logged in” notice",
"visualeditor-editsummary": "Label for the edit summary box",
"visualeditor-editsummary-bytes-remaining": "Tooltip for the number of bytes remaining in the edit summary",
"visualeditor-formatdropdown-format-mw-heading1": "Item in the MediaWiki formatting dropdown for a level 1 heading (page title).\n{{Related|Visualeditor-formatdropdown}}\n{{Identical|Page title}}",
"visualeditor-formatdropdown-format-mw-heading2": "Item in the MediaWiki formatting dropdown for a level 2 heading (section).\n{{Related|Visualeditor-formatdropdown}}\n{{Identical|Heading}}",
"visualeditor-formatdropdown-format-mw-heading3": "Item in the MediaWiki formatting dropdown for a level 3 heading (sub-section)\n{{Related|Visualeditor-formatdropdown}}",
"visualeditor-formatdropdown-format-mw-heading4": "Item in the MediaWiki formatting dropdown for a level 4 heading (sub-section)\n{{Related|Visualeditor-formatdropdown}}",
"visualeditor-formatdropdown-format-mw-heading5": "Item in the MediaWiki formatting dropdown for a level 5 heading (sub-section)\n{{Related|Visualeditor-formatdropdown}}",
"visualeditor-formatdropdown-format-mw-heading6": "Item in the MediaWiki formatting dropdown for a level 6 heading (sub-section)\n{{Related|Visualeditor-formatdropdown}}",
"visualeditor-languageinspector-widget-changelang": "Used as label for the button which is used to change the language of the given block in the language inspector.\n{{Identical|Change language}}",
"visualeditor-languages-tool": "Tool for opening the languages links section of the meta dialog.\n{{Identical|Language}}",
"visualeditor-linkinspector-illegal-title": "Warning that the entered text is not a valid page title.",
"visualeditor-linkinspector-suggest-disambig-page": "Label for suggested disambiguation pages in the link inspector. Parameters:\n* $1 - number of disambiguation pages, used for plural\n{{Identical|Disambiguation page}}",
"visualeditor-linkinspector-suggest-external-link": "Label for an external (Web) link in the link inspector.\n{{Identical|External link}}",
"visualeditor-linkinspector-suggest-matching-page": "Label for suggested matching local wiki page or pages in the link inspector\nParams:\n* $1 - number of matching pages, used for plural",
"visualeditor-linkinspector-suggest-new-page": "Label for a new page in the link inspector.\n{{Identical|New page}}",
"visualeditor-linkinspector-suggest-redirect-page": "Label for suggested redirect pages in the link inspector. Parameters:\n* $1 - number of redirect pages, used for plural\n{{Identical|Redirect page}}",
"visualeditor-loadwarning": "Text (JavaScript confirm()) shown when the editor fails to load properly.\n\nParameters:\n* $1 - the error message from the server, in English. e.g. \"parsoidserver-http-bad-status: 404\"",
"visualeditor-loadwarning-token": "Text (JavaScript confirm()) shown when the editor fails to load properly.\n\nParameters:\n* $1 - the error message from the server.",
"visualeditor-timeout": "Text (JavaScript confirm()) shown when the editor fails to load properly due to a 504 Gateway Timeout error.",
"visualeditor-mainnamespacepagelink": "Name of a page describing the main namespace (NS0) in this project.\n{{doc-important|Do not translate \"Project\"; it is automatically converted to the wiki's project namespace.}}",
"visualeditor-media-input-placeholder": "Place holder text for media search input",
"visualeditor-meta-tool": "Text of tool in the toolbar the lets users set categories, language links and other page settings.\n{{Identical|Options}}",
"visualeditor-mwalienextensioninspector-title": "Used as title for unknown MediaWiki extensions.\n{{Identical|MediaWiki extension}}",
"visualeditor-mweditmodesource-title": "Label for changing edit mode to source editing.",
"visualeditor-mweditmodesource-warning": "Warning message show before changing edit mode to source editing.",
"visualeditor-mwgalleryinspector-placeholder": "Placeholder text for the gallery inspector demonstrating how gallery syntax works.",
"visualeditor-mwgalleryinspector-title": "Used as title for the gallery inspector.\n{{Identical|Gallery}}",
"visualeditor-mwhieroinspector-title": "Used as title for the hieroglyphics inspector.",
"visualeditor-notification-created": "Shown after a user creates a new page. Parameters:\n* $1 - a page name",
"visualeditor-notification-restored": "Shown after a user restores a page to a previous revision. Parameters:\n* $1 is a page name.",
"visualeditor-notification-saved": "Shown after a user saves a page. Parameters:\n* $1 - a page name",
"visualeditor-pagemenu-tooltip": "Tooltip text for the page menu which has the following items:\n* {{msg-mw|visualeditor-meta-tool}}\n* {{msg-mw|visualeditor-settings-tool}}\n* {{msg-mw|visualeditor-advancedsettings-tool}}\n* {{msg-mw|visualeditor-categories-tool}}\n* {{msg-mw|visualeditor-languages-tool}}\n* {{msg-mw|visualeditor-mweditmodesource-title}}\n* {{msg-mw|visualeditor-dialog-command-help-title}}",
"visualeditor-pagetranslationwarning": "Edit notice shown when VisualEditor loads, warning users editing a translated page that it is not officially supported.",
"visualeditor-parameter-input-placeholder": "Placeholder text label for an input for adding a parameter to a template.\n{{Identical|Parameter name}}",
"visualeditor-parameter-search-more": "Label for item in parameter list that, when clicked, reveals additional parameters that had been truncated to save space",
"visualeditor-parameter-search-no-unused": "Message displayed in the transclusion dialog when no known parameters are unused by this template.",
"visualeditor-parameter-search-unknown": "{{Identical|Unknown parameter}}",
"visualeditor-preference-betatempdisable": "Label for the temporary user preference to disable VisualEditor while it is in beta.",
"visualeditor-preference-core-description": "Used in [[Special:Preferences]].\n\nUsed as description for the checkbox to enable VisualEditor.\n\nThe label for this checkbox is {{msg-mw|Visualeditor-preference-core-label}}.\n\nSee also:\n* {{msg-mw|Visualeditor-preference-enable}}",
"visualeditor-preference-core-discussion-link": "{{optional|Used on [[Special:Preferences]] as a link to a page where users can discuss this Beta Feature. Defaults to a page on MediaWiki.org.}}",
"visualeditor-preference-core-info-link": "{{optional|Used on [[Special:Preferences]] as a link to a page where users can learn about this Beta Feature. Defaults to a page on MediaWiki.org.}}",
"visualeditor-preference-core-label": "Used in [[Special:Preferences]].\n\nUsed as label for checkbox to enable VisualEditor.\n\nThe description for this checkbox is:\n* {{msg-mw|Visualeditor-preference-core-description}}\n{{Identical|VisualEditor}}",
"visualeditor-preference-enable": "Label for the user preference to enable VisualEditor while it is in alpha (opt-in) mode.\nLinks are in {{msg-mw|Visualeditor-mainnamespacepagelink}} and {{msg-mw|visualeditor-usernamespacepagelink}}.\n\nSee also:\n* {{msg-mw|Visualeditor-preference-core-description}}",
"visualeditor-preference-language-description": "Used in [[Special:Preferences]].\n\nUsed as description for the checkbox to enable language tools in VisualEditor.\n\nThe label for this checkbox is {{msg-mw|Visualeditor-preference-language-label}}.",
"visualeditor-preference-language-discussion-link": "{{optional|Used on [[Special:Preferences]] as a link to a page where users can discuss this Beta Feature. Defaults to a page on MediaWiki.org.}}",
"visualeditor-preference-language-info-link": "{{optional|Used on [[Special:Preferences]] as a link to a page where users can learn about this Beta Feature. Defaults to a page on MediaWiki.org.}}",
"visualeditor-preference-language-label": "Used in [[Special:Preferences]].\n\nUsed as label for checkbox to enable language tools in VisualEditor.\n\nThe description for this checkbox is:\n* {{msg-mw|Visualeditor-preference-language-description}}",
"visualeditor-preference-mwalienextension-description": "Used in [[Special:Preferences]].\n\nUsed as description for the checkbox to enable editing of extension tags in VisualEditor.\n\nThe label for this checkbox is {{msg-mw|Visualeditor-preference-mwalienextension-label}}.",
"visualeditor-preference-mwalienextension-discussion-link": "{{optional|Used on [[Special:Preferences]] as a link to a page where users can discuss this Beta Feature. Defaults to a page on MediaWiki.org.}}",
"visualeditor-preference-mwalienextension-info-link": "{{optional|Used on [[Special:Preferences]] as a link to a page where users can learn about this Beta Feature. Defaults to a page on MediaWiki.org.}}",
"visualeditor-preference-mwalienextension-label": "Used in [[Special:Preferences]].\n\nUsed as label for checkbox to enable editing of [[mw:Manual:Tag_extensions|extension tags]] in VisualEditor.\n\nThe description for this checkbox is:\n* {{msg-mw|Visualeditor-preference-mwalienextension-description}}",
"visualeditor-preference-mwhiero-description": "Used in [[Special:Preferences]].\n\nUsed as description for the checkbox to enable editing of hieroglyphics in VisualEditor.\n\nThe label for this checkbox is {{msg-mw|Visualeditor-preference-mwhiero-label}}.",
"visualeditor-preference-mwhiero-discussion-link": "{{optional|Used on [[Special:Preferences]] as a link to a page where users can discuss this Beta Feature. Defaults to a page on MediaWiki.org.}}",
"visualeditor-preference-mwhiero-info-link": "{{optional|Used on [[Special:Preferences]] as a link to a page where users can learn about this Beta Feature. Defaults to a page on MediaWiki.org.}}",
"visualeditor-preference-mwhiero-label": "Used in [[Special:Preferences]].\n\nUsed as label for checkbox to enable editing of hieroglyphics in VisualEditor.\n\nThe description for this checkbox is:\n* {{msg-mw|Visualeditor-preference-mwhiero-description}}",
"visualeditor-reference-input-placeholder": "Placeholder text for reference search field: searches existing on-page references.",
"visualeditor-referencelist-isempty": "Message that appears in the references list when there are no references on the page of that group.\n\nParameters:\n* $1 - reference-group name",
"visualeditor-referencelist-isempty-default": "Message that appears in the references list when there are no references on the page in the default group.",
"visualeditor-referencelist-missingref": "Message that appears in the references list, and as a tooltip on the reference itself, for references that are generated by a template or are otherwise uneditable.\n\nSee also:\n* {{msg-mw|visualeditor-dialog-meta-languages-readonlynote}}",
"visualeditor-savedialog-error-badtoken": "Error displayed in the save dialog if saving the edit failed due to an invalid edit token (likely due to the user having logged out in a separate window, or logged in again)",
"visualeditor-savedialog-identify-anon": "Displayed in the save dialog if saving failed because the session expired and the session is now an anonymous user. Warning about IP address being recorded is based on {{msg-mw|anoneditwarning}}.\n\n{{format|jquerymsg}}",
"visualeditor-savedialog-identify-user": "Displayed in the save dialog if saving failed because the session expired and the session is now for a different user account.\n{{format|jquerymsg}}\nParameters:\n* $1 - username",
"visualeditor-savedialog-label-create": "Label text for save button when the user is creating a new page",
"visualeditor-savedialog-label-error": "Label in front of a save dialog error sentence, separated by {{msg-mw|colon-separator}}.\n{{Identical|Error}}",
"visualeditor-savedialog-label-report": "Label for button to trigger report",
"visualeditor-savedialog-label-resolve-conflict": "Label for button to start resoliving an edit conflict",
"visualeditor-savedialog-label-restore": "Label text for save button when the user is editing a previous revision.\n{{Identical|Restore page}}",
"visualeditor-savedialog-label-review": "Label for button to go to the review dialog to review the diff",
"visualeditor-savedialog-label-review-good": "Label for button to go back to the save form",
"visualeditor-savedialog-label-save": "Label text for save button when the user is editing a current revision of an extant page.\n{{Identical|Save page}}",
"visualeditor-savedialog-label-warning": "Label in front of a save dialog warning sentence, separated by {{msg-mw|colon-separator}}.\n{{Identical|Warning}}",
"visualeditor-savedialog-title-conflict": "Title for save dialog slide if there is an edit conflict",
"visualeditor-savedialog-title-nochanges": "Title for save dialog slide for the wikitext diff if there are no changes",
"visualeditor-savedialog-title-review": "Title for save dialog slide for the wikitext diff",
"visualeditor-savedialog-title-save": "Title for save dialog slide for the final save step",
"visualeditor-savedialog-warning-dirty": "Note displayed to users in the save dialog if VisualEditor believes that it may have corrupted the page.",
"visualeditor-saveerror": "Text shown when the editor fails to save properly.\n\nParameters:\n* $1 is an error message, in English.",
"visualeditor-serializeerror": "Text shown when the editor fails to load the wikitext for saving.\n\nParameters:\n* $1 is an error message, in English.",
"visualeditor-settings-tool": "Text of tool in the toolbar the lets users set specific page settings.\n{{Identical|Page settings}}",
"visualeditor-toolbar-cancel": "Label text for button to exit from VisualEditor.\n{{Identical|Cancel}}",
"visualeditor-toolbar-format-tooltip": "Tooltip text for the paragraph formatting menu which contains the following items:\n* {{msg-mw|Visualeditor-formatdropdown-format-paragraph}}\n* {{msg-mw|Visualeditor-formatdropdown-format-mw-heading1}}\n* {{msg-mw|Visualeditor-formatdropdown-format-mw-heading2}}\n* {{msg-mw|Visualeditor-formatdropdown-format-mw-heading3}}\n* {{msg-mw|Visualeditor-formatdropdown-format-mw-heading4}}\n* {{msg-mw|Visualeditor-formatdropdown-format-mw-heading5}}\n* {{msg-mw|Visualeditor-formatdropdown-format-mw-heading6}}\n* {{msg-mw|Visualeditor-formatdropdown-format-preformatted}}",
"visualeditor-toolbar-savedialog": "Label text for button to open save dialog.\n\nUsed in:\n* {{msg-mw|Guidedtour-tour-gettingstartedtasktoolbarve-click-save-description}}.\n{{Identical|Save page}}",
"visualeditor-toolbar-style-tooltip": "Tooltip text for the text styling menu which has the following items:\n* {{msg-mw|Visualeditor-annotationbutton-bold-tooltip}}\n* {{msg-mw|Visualeditor-annotationbutton-code-tooltip}}\n* {{msg-mw|Visualeditor-annotationbutton-italic-tooltip}}\n* {{msg-mw|Visualeditor-annotationbutton-language-tooltip}}\n* {{msg-mw|Visualeditor-annotationbutton-link-tooltip}}\n* {{msg-mw|Visualeditor-annotationbutton-strikethrough-tooltip}}\n* {{msg-mw|Visualeditor-annotationbutton-subscript-tooltip}}\n* {{msg-mw|Visualeditor-annotationbutton-superscript-tooltip}}\n* {{msg-mw|Visualeditor-annotationbutton-underline-tooltip}}",
"visualeditor-usernamespacepagelink": "Name of a page describing the user namespace (NS2) in this project.\n{{doc-important|Do not translate \"Project\"; it is automatically converted to the wiki's project namespace.}}",
"visualeditor-viewpage-savewarning": "Text shown when the user tries to leave the editor without saving their changes",
"visualeditor-wikitext-warning": "Contents of notification displayed when Wikitext has been detected.\n\nRefers to:\n* {{msg-mw|Visualeditor-wikitext-warning-link}}\n* {{msg-mw|Visualeditor-ca-editsource}}",
"visualeditor-wikitext-warning-link": "Link to page describing what Wikitext is.\n\nUsed in:\n* {{msg-mw|Visualeditor-wikitext-warning}}.",
"visualeditor-wikitext-warning-title": "Title of notification displayed when Wikitext has been detected"
}