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.tablespace', [
type: 'coll-tablespace',
columns: ['name', 'spcuser', 'description'],
hasStatistics: true,
statsPrettifyFields: ['Size'],
statsPrettifyFields: [gettext('Size')],
canDrop: true,
canDropCascade: false,
});
@@ -42,7 +42,7 @@ define('pgadmin.node.tablespace', [
canDrop: true,
hasDepends: true,
hasStatistics: true,
statsPrettifyFields: ['Size'],
statsPrettifyFields: [gettext('Size')],
Init: function() {
/* Avoid mulitple registration of menus */
if (this.initialized)