From ce5d7b7d60f0e04c9298d0f841ec9406e2dfc891 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Thu, 10 Mar 2016 17:18:42 +0000 Subject: [PATCH] Fix gettext calls per Khushboo --- .../tablespaces/templates/tablespaces/js/tablespaces.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pgadmin/browser/server_groups/servers/tablespaces/templates/tablespaces/js/tablespaces.js b/web/pgadmin/browser/server_groups/servers/tablespaces/templates/tablespaces/js/tablespaces.js index 4b75dfac2..e9863eefd 100644 --- a/web/pgadmin/browser/server_groups/servers/tablespaces/templates/tablespaces/js/tablespaces.js +++ b/web/pgadmin/browser/server_groups/servers/tablespaces/templates/tablespaces/js/tablespaces.js @@ -120,13 +120,13 @@ function($, _, S, pgAdmin, pgBrowser, alertify) { id: 'description', label:'{{ _('Comment') }}', cell: 'string', type: 'multiline' },{ - id: 'spcoptions', label: 'Variables', type: 'collection', + id: 'spcoptions', label: '{{ _('Variables') }}', type: 'collection', group: "Variables", control: 'variable-collection', model: pgAdmin.Browser.Node.VariableModel, mode: ['edit', 'create'], canAdd: true, canEdit: false, canDelete: true },{ - id: 'spcacl', label: 'Privileges', type: 'collection', + id: 'spcacl', label: '{{ _('Privileges') }}', type: 'collection', group: '{{ _('Security') }}', control: 'unique-col-collection', model: pgAdmin.Browser.Node.PrivilegeRoleModel.extend({privileges: ['C']}), mode: ['edit', 'create'], canAdd: true, canDelete: true,