diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.js b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.js index 90e7f1440..a33859fab 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.js +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.js @@ -216,7 +216,7 @@ function( pgAdmin.Browser.notifier.confirm( gettext('Truncate Table'), - gettext('Are you sure you want to truncate table %s?', d.label), + gettext('Are you sure you want to truncate table %s?', d.label), function () { let data = d; getApiInstance().put(obj.generate_url(i, 'truncate' , d, true), params) diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/static/js/table.js b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/static/js/table.js index b276614f0..5521e2a33 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/static/js/table.js +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/static/js/table.js @@ -182,7 +182,7 @@ define('pgadmin.node.table', [ pgAdmin.Browser.notifier.confirm( gettext('Truncate Table'), - gettext('Are you sure you want to truncate table %s?', d.label), + gettext('Are you sure you want to truncate table %s?', d.label), function () { let data = d; getApiInstance().put(obj.generate_url(i, 'truncate' , d, true), params) diff --git a/web/pgadmin/browser/static/js/node.js b/web/pgadmin/browser/static/js/node.js index fa8cdc45c..3cc00da2c 100644 --- a/web/pgadmin/browser/static/js/node.js +++ b/web/pgadmin/browser/static/js/node.js @@ -521,11 +521,11 @@ define('pgadmin.browser.node', [ let msg, title; if (input.url == 'delete' && d._type === 'database') { - msg = gettext('Delete database with the force option will attempt to terminate all existing connections to the "%s" database. Are you sure you want to proceed?', d.label); + msg = gettext('Delete database with the force option will attempt to terminate all existing connections to the "%s" database. Are you sure you want to proceed?', d.label); title = gettext('Delete FORCE %s?', obj.label); } else if (input.url == 'delete') { - msg = gettext('Are you sure you want to delete %s "%s" and all the objects that depend on it?', + msg = gettext('Are you sure you want to delete %s "%s" and all the objects that depend on it?', obj.label.toLowerCase(), d.label); title = gettext('Delete CASCADE %s?', obj.label); @@ -542,7 +542,7 @@ define('pgadmin.browser.node', [ msg = gettext('Are you sure you want to remove %s "%s"?', obj.label.toLowerCase(), d.label); title = gettext('Remove %s?', obj.label); } else { - msg = gettext('Are you sure you want to delete %s "%s"?', obj.label.toLowerCase(), d.label); + msg = gettext('Are you sure you want to delete %s "%s"?', obj.label.toLowerCase(), d.label); title = gettext('Delete %s?', obj.label); }