mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
Capitalize the word 'export' used in Import/Export module. Fixes #4345
This commit is contained in:
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 #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 #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 #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 #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 #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.
|
| `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) {
|
.done(function(res) {
|
||||||
if (res.success) {
|
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);
|
pgBrowser.Events.trigger('pgadmin-bgprocess:created', self);
|
||||||
} else {
|
} else {
|
||||||
Alertify.alert(
|
Alertify.alert(
|
||||||
gettext('Import/export job creation failed.'),
|
gettext('Import/Export job creation failed.'),
|
||||||
res.errormsg
|
res.errormsg
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -557,7 +557,7 @@ define([
|
|||||||
try {
|
try {
|
||||||
var err = JSON.parse(xhr.responseText);
|
var err = JSON.parse(xhr.responseText);
|
||||||
Alertify.alert(
|
Alertify.alert(
|
||||||
gettext('Import/export job failed.'),
|
gettext('Import/Export job failed.'),
|
||||||
err.errormsg
|
err.errormsg
|
||||||
);
|
);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user