Fix mixup of dialog titles, closes #1657.

This commit is contained in:
Antonin Delpeuch 2018-09-13 11:00:33 +01:00
parent 5a0304f363
commit 8ea6f6e251
2 changed files with 4 additions and 3 deletions

View File

@ -237,7 +237,8 @@
"help": "Help",
"opt-code-applied": "Option code successfully applied.",
"error-apply-code": "Error applying option code",
"custom-tab-exp": "SQL Exporter",
"sql-exporter": "SQL Exporter",
"custom-tab-exp": "Custom Tabular Exporter",
"content": "Content",
"download": "Download",
"upload": "Upload",

View File

@ -48,7 +48,7 @@ function SqlExporterDialog(options) {
this._dialog = $(DOM.loadHTML("core", "scripts/dialogs/sql-exporter-dialog.html"));
this._elmts = DOM.bind(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_download.html($.i18n._('core-dialogs')["download"]);
@ -492,4 +492,4 @@ function SqlExporterDialog(options) {
//alert('options:' + options);
return options;
};