Merge pull request #1733 from OpenRefine/issue1657
Fix mixup of dialog titles
This commit is contained in:
commit
4659536b11
@ -237,7 +237,9 @@
|
|||||||
"help": "Help",
|
"help": "Help",
|
||||||
"opt-code-applied": "Option code successfully applied.",
|
"opt-code-applied": "Option code successfully applied.",
|
||||||
"error-apply-code": "Error applying option code",
|
"error-apply-code": "Error applying option code",
|
||||||
"custom-tab-exp": "SQL Exporter",
|
"sql-exporter": "SQL Exporter",
|
||||||
|
"custom-tab-exp": "Custom Tabular Exporter",
|
||||||
|
"select-columns-dialog": "Select columns",
|
||||||
"content": "Content",
|
"content": "Content",
|
||||||
"download": "Download",
|
"download": "Download",
|
||||||
"upload": "Upload",
|
"upload": "Upload",
|
||||||
|
@ -249,7 +249,7 @@
|
|||||||
"language": "Langue",
|
"language": "Langue",
|
||||||
"linear-plot": "Tracé linéaire",
|
"linear-plot": "Tracé linéaire",
|
||||||
"excel-xml": "Excel en XML (.xlsx)",
|
"excel-xml": "Excel en XML (.xlsx)",
|
||||||
"custom-tab-exp": "Exporteur SQL",
|
"sql-exporter": "Exporteur SQL",
|
||||||
"custom-separator": "Séparateur personnalisé",
|
"custom-separator": "Séparateur personnalisé",
|
||||||
"template-suffix": "Suffixe",
|
"template-suffix": "Suffixe",
|
||||||
"history": "Historique",
|
"history": "Historique",
|
||||||
|
@ -249,7 +249,7 @@
|
|||||||
"opt-for": "Opzioni per",
|
"opt-for": "Opzioni per",
|
||||||
"linear-plot": "Grafico a linee",
|
"linear-plot": "Grafico a linee",
|
||||||
"excel-xml": "Excel in XML (.xlsx)",
|
"excel-xml": "Excel in XML (.xlsx)",
|
||||||
"custom-tab-exp": "Exporter SQL",
|
"sql-exporter": "Exporter SQL",
|
||||||
"custom-separator": "Separatore personalizzato",
|
"custom-separator": "Separatore personalizzato",
|
||||||
"template-suffix": "Suffisso",
|
"template-suffix": "Suffisso",
|
||||||
"history": "Storia",
|
"history": "Storia",
|
||||||
|
@ -31,7 +31,7 @@ ExpressionColumnDialog.prototype._createDialog = function() {
|
|||||||
this._level = DialogSystem.showDialog(this._dialog);
|
this._level = DialogSystem.showDialog(this._dialog);
|
||||||
|
|
||||||
|
|
||||||
this._elmts.dialogHeader.html($.i18n._('core-dialogs')["custom-tab-exp"]);
|
this._elmts.dialogHeader.html($.i18n._('core-dialogs')["select-columns-dialog"]);
|
||||||
this._elmts.or_dialog_content.html($.i18n._('core-dialogs')["content"]);
|
this._elmts.or_dialog_content.html($.i18n._('core-dialogs')["content"]);
|
||||||
this._elmts.or_dialog_selAndOrd.html($.i18n._('core-dialogs')["sel-and-ord"]);
|
this._elmts.or_dialog_selAndOrd.html($.i18n._('core-dialogs')["sel-and-ord"]);
|
||||||
this._elmts.selectAllButton.html($.i18n._('core-buttons')["select-all"]);
|
this._elmts.selectAllButton.html($.i18n._('core-buttons')["select-all"]);
|
||||||
|
@ -48,7 +48,7 @@ function SqlExporterDialog(options) {
|
|||||||
this._dialog = $(DOM.loadHTML("core", "scripts/dialogs/sql-exporter-dialog.html"));
|
this._dialog = $(DOM.loadHTML("core", "scripts/dialogs/sql-exporter-dialog.html"));
|
||||||
this._elmts = DOM.bind(this._dialog);
|
this._elmts = DOM.bind(this._dialog);
|
||||||
this._level = DialogSystem.showDialog(this._dialog);
|
this._level = DialogSystem.showDialog(this._dialog);
|
||||||
this._elmts.dialogHeader.html($.i18n._('core-dialogs')["custom-tab-exp"]);
|
this._elmts.dialogHeader.html($.i18n._('core-dialogs')["sql-exporter"]);
|
||||||
this._elmts.or_dialog_content.html($.i18n._('core-dialogs')["content"]);
|
this._elmts.or_dialog_content.html($.i18n._('core-dialogs')["content"]);
|
||||||
this._elmts.or_dialog_download.html($.i18n._('core-dialogs')["download"]);
|
this._elmts.or_dialog_download.html($.i18n._('core-dialogs')["download"]);
|
||||||
|
|
||||||
@ -492,4 +492,4 @@ function SqlExporterDialog(options) {
|
|||||||
//alert('options:' + options);
|
//alert('options:' + options);
|
||||||
return options;
|
return options;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user