Add improvement-message for vantage. (#3011)

Fixed self mistakes

modified line forVantage

Revert "modified line forVantage"

This reverts commit f252bde77cedf2f85fbfaf2059e551078ad62c2c.

modification in one anathor line

Co-authored-by: chetan <you@example.com>
This commit is contained in:
Chetan Verma 2020-08-03 17:45:39 +05:30 committed by GitHub
parent 0ebd89c952
commit 04309dcfb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

View File

@ -69,6 +69,7 @@
"core-index-import/unknown-err": "Unknown error",
"core-index-import/error": "Error:",
"core-index-import/select-file": "Select Files to Import",
"core-index-import/single-project": "OpenRefine can only import multiple files into a single project if all selected files have the same file format.",
"core-index-import/several-file": "There are several files available. Please select the ones to import.",
"core-index-import/sel-by-extension": "Select by Extension",
"core-index-import/sel-by-regex": "Select by Regex on File Names",

View File

@ -6,6 +6,9 @@
<div bind="controlPanel" class="default-importing-file-selection-control-panel">
<div class="grid-layout layout-full layout-tighter"><table>
<tr>
<td colspan="3" id="or-import-singleProject"></td>
</tr>
<tr>
<td colspan="3" id="or-import-severalFile"></td>
</tr>

View File

@ -60,6 +60,7 @@ Refine.DefaultImportingController.prototype._prepareFileSelectionPanel = functio
this._fileSelectionPanelElmts = DOM.bind(this._fileSelectionPanel);
$('#or-import-select').text($.i18n('core-index-import/select-file'));
$('#or-import-singleProject').text($.i18n('core-index-import/single-project'));
$('#or-import-severalFile').text($.i18n('core-index-import/several-file'));
$('#or-import-selExt').text($.i18n('core-index-import/sel-by-extension'));
$('#or-import-regex').text($.i18n('core-index-import/sel-by-regex'));