Give the name to button 'Back' (#2989)

* Give the name to button 'Back'

* Using DOM to add name of button
This commit is contained in:
Chetan Verma 2020-07-26 12:38:50 +05:30 committed by GitHub
parent 602149db6e
commit 86ec7e6b40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -725,6 +725,7 @@
"core-buttons/reselect-files": "« Re-select Files",
"core-buttons/create-project": "Create Project »",
"core-buttons/next": "Next »",
"core-buttons/previous": "Back",
"core-buttons/add-url": "Add Another URL",
"core-buttons/update-preview": "Update Preview",
"core-buttons/pick-record": "Pick Record Elements",

View File

@ -96,6 +96,7 @@ Refine.DefaultImportingController.prototype._prepareParsingPanel = function() {
});
this._parsingPanelElmts.progressPanel.hide();
this._parsingPanelElmts.previousButton.html($.i18n('core-buttons/previous'));
this._parsingPanelElmts.startOverButton.html($.i18n('core-buttons/startover'));
this._parsingPanelElmts.nextButton.html($.i18n('core-buttons/create-project'));
$('#or-import-parsopt').text($.i18n('core-index-import/parsing-options'));