Capitalize the word 'export' used in Import/Export module. Fixes #4345

This commit is contained in:
Akshay Joshi 2019-06-19 16:17:29 +05:30
parent ce7679c4bd
commit 5c0ea0c012
2 changed files with 4 additions and 3 deletions

View File

@ -30,6 +30,7 @@ Bug fixes
| `Bug #4320 <https://redmine.postgresql.org/issues/4320>`_ - Fix issue where SSH tunnel connection using password is failing, it's regression of Master Password.
| `Bug #4329 <https://redmine.postgresql.org/issues/4329>`_ - Fix an initialisation error when two functions with parameters are debugged in parallel.
| `Bug #4343 <https://redmine.postgresql.org/issues/4343>`_ - Fix issue where property dialog of column should open properly for EPAS v12.
| `Bug #4345 <https://redmine.postgresql.org/issues/4345>`_ - Capitalize the word 'export' used in Import/Export module.
| `Bug #4349 <https://redmine.postgresql.org/issues/4349>`_ - Ensure strings are properly encoded in the Query History.
| `Bug #4350 <https://redmine.postgresql.org/issues/4350>`_ - Ensure we include the CSRF token when uploading files.
| `Bug #4357 <https://redmine.postgresql.org/issues/4357>`_ - Fix connection restoration issue when pgAdmin server is restarted and the page is refreshed.

View File

@ -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) {