Ensure size stats are prettified on the statistics tab when the UI language != English. Fixes #3096

This commit is contained in:
Dave Page
2019-02-20 16:39:38 +00:00
parent a39f43788b
commit e5598038fa
9 changed files with 19 additions and 18 deletions

View File

@@ -24,7 +24,7 @@ define('pgadmin.node.database', [
hasStatistics: true,
canDrop: true,
canDropCascade: false,
statsPrettifyFields: ['Size', 'Size of temporary files'],
statsPrettifyFields: [gettext('Size'), gettext('Size of temporary files')],
});
}
@@ -38,7 +38,7 @@ define('pgadmin.node.database', [
hasSQL: true,
hasDepends: true,
hasStatistics: true,
statsPrettifyFields: ['Size', 'Size of temporary files'],
statsPrettifyFields: [gettext('Size'), gettext('Size of temporary files')],
canDrop: function(node) {
return node.canDrop;
},