mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Further string improvements.
This commit is contained in:
@@ -81,7 +81,7 @@ function($, _, S, pgAdmin, pgBrowser, alertify) {
|
|||||||
},{
|
},{
|
||||||
name: 'reset_table_stats', node: 'table', module: this,
|
name: 'reset_table_stats', node: 'table', module: this,
|
||||||
applies: ['object', 'context'], callback: 'reset_table_stats',
|
applies: ['object', 'context'], callback: 'reset_table_stats',
|
||||||
category: 'Reset', priority: 4, label: '{{ _('Reset statistics') }}',
|
category: 'Reset', priority: 4, label: '{{ _('Reset Statistics') }}',
|
||||||
icon: 'fa fa-bar-chart', enable : 'canCreate'
|
icon: 'fa fa-bar-chart', enable : 'canCreate'
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|||||||
@@ -72,22 +72,22 @@ function($, _, S, pgAdmin, pgBrowser, alertify) {
|
|||||||
},{
|
},{
|
||||||
name: 'connect_server', node: 'server', module: this,
|
name: 'connect_server', node: 'server', module: this,
|
||||||
applies: ['object', 'context'], callback: 'connect_server',
|
applies: ['object', 'context'], callback: 'connect_server',
|
||||||
category: 'connect', priority: 4, label: '{{ _('Connect Server...') }}',
|
category: 'connect', priority: 4, label: '{{ _('Connect Server') }}',
|
||||||
icon: 'fa fa-link', enable : 'is_not_connected'
|
icon: 'fa fa-link', enable : 'is_not_connected'
|
||||||
},{
|
},{
|
||||||
name: 'disconnect_server', node: 'server', module: this,
|
name: 'disconnect_server', node: 'server', module: this,
|
||||||
applies: ['object', 'context'], callback: 'disconnect_server',
|
applies: ['object', 'context'], callback: 'disconnect_server',
|
||||||
category: 'drop', priority: 5, label: '{{ _('Disconnect Server...') }}',
|
category: 'drop', priority: 5, label: '{{ _('Disconnect Server') }}',
|
||||||
icon: 'fa fa-chain-broken', enable : 'is_connected'
|
icon: 'fa fa-chain-broken', enable : 'is_connected'
|
||||||
},{
|
},{
|
||||||
name: 'reload_configuration', node: 'server', module: this,
|
name: 'reload_configuration', node: 'server', module: this,
|
||||||
applies: ['tools', 'context'], callback: 'reload_configuration',
|
applies: ['tools', 'context'], callback: 'reload_configuration',
|
||||||
category: 'reload', priority: 6, label: '{{ _('Reload Configuration...') }}',
|
category: 'reload', priority: 6, label: '{{ _('Reload Configuration') }}',
|
||||||
icon: 'fa fa-repeat', enable : 'enable_reload_config'
|
icon: 'fa fa-repeat', enable : 'enable_reload_config'
|
||||||
},{
|
},{
|
||||||
name: 'restore_point', node: 'server', module: this,
|
name: 'restore_point', node: 'server', module: this,
|
||||||
applies: ['tools', 'context'], callback: 'restore_point',
|
applies: ['tools', 'context'], callback: 'restore_point',
|
||||||
category: 'restore', priority: 9, label: '{{ _('Add named restore point') }}',
|
category: 'restore', priority: 9, label: '{{ _('Add Named Restore Point...') }}',
|
||||||
icon: 'fa fa-anchor', enable : 'is_applicable'
|
icon: 'fa fa-anchor', enable : 'is_applicable'
|
||||||
},{
|
},{
|
||||||
name: 'change_password', node: 'server', module: this,
|
name: 'change_password', node: 'server', module: this,
|
||||||
@@ -97,12 +97,12 @@ function($, _, S, pgAdmin, pgBrowser, alertify) {
|
|||||||
},{
|
},{
|
||||||
name: 'wal_replay_pause', node: 'server', module: this,
|
name: 'wal_replay_pause', node: 'server', module: this,
|
||||||
applies: ['tools', 'context'], callback: 'pause_wal_replay',
|
applies: ['tools', 'context'], callback: 'pause_wal_replay',
|
||||||
category: 'wal_replay_pause', priority: 7, label: '{{ _('Pause replay of WAL') }}',
|
category: 'wal_replay_pause', priority: 7, label: '{{ _('Pause Replay of WAL') }}',
|
||||||
icon: 'fa fa-pause-circle', enable : 'wal_pause_enabled'
|
icon: 'fa fa-pause-circle', enable : 'wal_pause_enabled'
|
||||||
},{
|
},{
|
||||||
name: 'wal_replay_resume', node: 'server', module: this,
|
name: 'wal_replay_resume', node: 'server', module: this,
|
||||||
applies: ['tools', 'context'], callback: 'resume_wal_replay',
|
applies: ['tools', 'context'], callback: 'resume_wal_replay',
|
||||||
category: 'wal_replay_resume', priority: 8, label: '{{ _('Resume replay of WAL') }}',
|
category: 'wal_replay_resume', priority: 8, label: '{{ _('Resume Replay of WAL') }}',
|
||||||
icon: 'fa fa-play-circle', enable : 'wal_resume_enabled'
|
icon: 'fa fa-play-circle', enable : 'wal_resume_enabled'
|
||||||
}]);
|
}]);
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ function($, _, S, pgAdmin, Backbone, Alertify, Backform) {
|
|||||||
pgAdmin.Browser.add_menus([{
|
pgAdmin.Browser.add_menus([{
|
||||||
name: 'show_query_tool', node: this.type, module: this,
|
name: 'show_query_tool', node: this.type, module: this,
|
||||||
applies: ['object', 'context'], callback: 'show_query_tool',
|
applies: ['object', 'context'], callback: 'show_query_tool',
|
||||||
priority: 998, label: '{{ _("Query tool") }}',
|
priority: 998, label: '{{ _("Query Tool...") }}',
|
||||||
icon: 'fa fa-bolt'
|
icon: 'fa fa-bolt'
|
||||||
}]);
|
}]);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -113,7 +113,7 @@ function($, _, S, pgAdmin, Menu, Backbone, Alertify, pgBrowser, Backform) {
|
|||||||
pgAdmin.Browser.add_menus([{
|
pgAdmin.Browser.add_menus([{
|
||||||
name: 'show_query_tool', node: self.type, module: self,
|
name: 'show_query_tool', node: self.type, module: self,
|
||||||
applies: ['object', 'context'], callback: 'show_query_tool',
|
applies: ['object', 'context'], callback: 'show_query_tool',
|
||||||
priority: 998, label: '{{ _("Query tool") }}',
|
priority: 998, label: '{{ _("Query Tool...") }}',
|
||||||
icon: 'fa fa-bolt'
|
icon: 'fa fa-bolt'
|
||||||
}]);
|
}]);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user