Capitalize the word 'export' used in Import/Export module. Fixes #4345
parent
ce7679c4bd
commit
5c0ea0c012
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue