From 5c0ea0c012839d69f9b40f3efcc632a5c4d52cff Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Wed, 19 Jun 2019 16:17:29 +0530 Subject: [PATCH] Capitalize the word 'export' used in Import/Export module. Fixes #4345 --- docs/en_US/release_notes_4_9.rst | 1 + web/pgadmin/tools/import_export/static/js/import_export.js | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/en_US/release_notes_4_9.rst b/docs/en_US/release_notes_4_9.rst index 48c4245f1..3ca0b530a 100644 --- a/docs/en_US/release_notes_4_9.rst +++ b/docs/en_US/release_notes_4_9.rst @@ -30,6 +30,7 @@ Bug fixes | `Bug #4320 `_ - Fix issue where SSH tunnel connection using password is failing, it's regression of Master Password. | `Bug #4329 `_ - Fix an initialisation error when two functions with parameters are debugged in parallel. | `Bug #4343 `_ - Fix issue where property dialog of column should open properly for EPAS v12. +| `Bug #4345 `_ - Capitalize the word 'export' used in Import/Export module. | `Bug #4349 `_ - Ensure strings are properly encoded in the Query History. | `Bug #4350 `_ - Ensure we include the CSRF token when uploading files. | `Bug #4357 `_ - Fix connection restoration issue when pgAdmin server is restarted and the page is refreshed. diff --git a/web/pgadmin/tools/import_export/static/js/import_export.js b/web/pgadmin/tools/import_export/static/js/import_export.js index 74499d11b..9c75cc1ff 100644 --- a/web/pgadmin/tools/import_export/static/js/import_export.js +++ b/web/pgadmin/tools/import_export/static/js/import_export.js @@ -544,11 +544,11 @@ define([ }) .done(function(res) { if (res.success) { - Alertify.success(gettext('Import/export job created.'), 5); + Alertify.success(gettext('Import/Export job created.'), 5); pgBrowser.Events.trigger('pgadmin-bgprocess:created', self); } else { Alertify.alert( - gettext('Import/export job creation failed.'), + gettext('Import/Export job creation failed.'), res.errormsg ); } @@ -557,7 +557,7 @@ define([ try { var err = JSON.parse(xhr.responseText); Alertify.alert( - gettext('Import/export job failed.'), + gettext('Import/Export job failed.'), err.errormsg ); } catch (e) {