mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Cleanup some inconsistent error dialog titles. Fixes #2098
This commit is contained in:
committed by
Dave Page
parent
7e419d1bfe
commit
bac9c77c4e
@@ -208,7 +208,7 @@ define([
|
||||
try {
|
||||
var err = $.parseJSON(xhr.responseText);
|
||||
if (err.success == 0) {
|
||||
Alertify.alert(err.errormsg);
|
||||
Alertify.alert(gettext('Debugger Error'), err.errormsg);
|
||||
}
|
||||
} catch (e) {}
|
||||
}
|
||||
@@ -324,7 +324,7 @@ define([
|
||||
try {
|
||||
var err = $.parseJSON(xhr.responseText);
|
||||
if (err.success == 0) {
|
||||
Alertify.alert(err.errormsg);
|
||||
Alertify.alert(gettext('Debugger Error'), err.errormsg);
|
||||
}
|
||||
} catch (e) {}
|
||||
}
|
||||
|
||||
@@ -211,7 +211,8 @@ define([
|
||||
},
|
||||
error: function(e) {
|
||||
Alertify.alert(
|
||||
gettext('Debugger Set Arguments Error')
|
||||
gettext('Debugger Error'),
|
||||
gettext('Unable to fetch the arguments from server')
|
||||
);
|
||||
}
|
||||
});
|
||||
@@ -662,7 +663,8 @@ define([
|
||||
},
|
||||
error: function(e) {
|
||||
Alertify.alert(
|
||||
gettext('Debugger Set arguments error')
|
||||
gettext('Debugger Error'),
|
||||
gettext('Unable to set the arguments on the server')
|
||||
);
|
||||
}
|
||||
});
|
||||
@@ -708,7 +710,8 @@ define([
|
||||
},
|
||||
error: function(e) {
|
||||
Alertify.alert(
|
||||
gettext('Debugger Set Arguments Error')
|
||||
gettext('Debugger Error'),
|
||||
gettext('Unable to set the arguments on the server')
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -660,7 +660,7 @@ define([
|
||||
try {
|
||||
var err = $.parseJSON(xhr.responseText);
|
||||
if (err.success == 0) {
|
||||
Alertify.alert(err.errormsg);
|
||||
Alertify.alert(gettext('Debugger Error'), err.errormsg);
|
||||
}
|
||||
} catch (e) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user