ExportWikitextDialog: Add ellipses to "Export" buttons

This indicates these are not the final actions in the process.

Change-Id: I88227a1025f56ea59ef76a59b81cde22e81a959a
This commit is contained in:
Ed Sanders 2020-07-30 16:23:02 +01:00
parent 3ebcf5695d
commit a9d7884d3b
5 changed files with 5 additions and 2 deletions

View file

@ -529,6 +529,7 @@
],
"messages": [
"visualeditor-rebase-client-export",
"visualeditor-rebase-client-export-start",
"visualeditor-rebase-client-import-name",
"visualeditor-savedialog-review-wikitext"
],

View file

@ -362,6 +362,7 @@
"visualeditor-preference-visualdiffpage-label": "Visual differences",
"visualeditor-quick-access-characters.json": "null",
"visualeditor-rebase-client-export": "Export",
"visualeditor-rebase-client-export-start": "Export…",
"visualeditor-rebase-client-import": "Import",
"visualeditor-rebase-client-import-name": "Page title",
"visualeditor-recreate": "The page has been deleted since you started editing. Press \"$1\" to recreate it.",

View file

@ -380,6 +380,7 @@
"visualeditor-preference-visualdiffpage-label": "Used in [[Special:Preferences]].\n\nUsed as label for checkbox to enable the new visual difference mode.\n\nThe description for this checkbox is {{msg-mw|Visualeditor-preference-visualdiffpage-description}}",
"visualeditor-quick-access-characters.json": "{{notranslate}}\n\n{{ignored}}\n\nJSON object mapping character labels to actual characters that can be inserted using the special character inserter.",
"visualeditor-rebase-client-export": "Label for button to export a document\n{{Identical|Export}}",
"visualeditor-rebase-client-export-start": "Label for button to start a process to export a document\n\nSee also:\n* {{msg-mw|visualeditor-rebase-client-export}}",
"visualeditor-rebase-client-import": "Label for button to import a document from the wiki",
"visualeditor-rebase-client-import-name": "Label import document input",
"visualeditor-recreate": "Text shown when the editor fails to save the page due to it having been deleted since they opened VE. $1 is the message {{msg-mw|ooui-dialog-process-continue}}.",

View file

@ -157,7 +157,7 @@ ve.ui.MWExportTool.static.group = 'export';
ve.ui.MWExportTool.static.autoAddToCatchall = false;
ve.ui.MWExportTool.static.flags = [ 'progressive', 'primary' ];
ve.ui.MWExportTool.static.title =
OO.ui.deferMsg( 'visualeditor-rebase-client-export' );
OO.ui.deferMsg( 'visualeditor-rebase-client-export-start' );
ve.ui.MWExportTool.static.commandName = 'mwExportWikitext';
ve.ui.toolFactory.register( ve.ui.MWExportTool );

View file

@ -55,7 +55,7 @@ ve.ui.MWExportWikitextDialog.prototype.initialize = function () {
value: ve.init.target.getImportTitle()
}, { api: ve.init.target.getContentApi() } );
this.titleButton = new OO.ui.ButtonWidget( {
label: ve.msg( 'visualeditor-rebase-client-export' ),
label: ve.msg( 'visualeditor-rebase-client-export-start' ),
flags: [ 'primary', 'progressive' ]
} );
this.titleField = new OO.ui.ActionFieldLayout( this.titleInput, this.titleButton, {