mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-06-14 16:04:18 +00:00
Do not translate IT terms which should be used 'as is' in every language
for 'Initialize GPT' we use the alternate 'Initialize Disk with GPT' string which was already existing
This commit is contained in:
parent
d5e771ce51
commit
b9628aa501
@ -152,7 +152,7 @@ Ext.define('PVE.Utils', { utilities: {
|
||||
} else if (el === 'network') {
|
||||
fa.push(gettext('Network'));
|
||||
} else if (el === 'usb') {
|
||||
fa.push(gettext('USB'));
|
||||
fa.push('USB');
|
||||
} else if (el === 'memory') {
|
||||
fa.push(gettext('Memory'));
|
||||
} else if (el === 'cpu') {
|
||||
@ -564,7 +564,7 @@ Ext.define('PVE.Utils', { utilities: {
|
||||
},
|
||||
|
||||
task_desc_table: {
|
||||
diskinit: [ 'Disk', gettext('Initialize GPT') ],
|
||||
diskinit: [ 'Disk', gettext('Initialize Disk with GPT') ],
|
||||
vncproxy: [ 'VM/CT', gettext('Console') ],
|
||||
spiceproxy: [ 'VM/CT', gettext('Console') + ' (Spice)' ],
|
||||
vncshell: [ '', gettext('Shell') ],
|
||||
|
@ -116,8 +116,8 @@ Ext.define('PVE.FirewallOptions', {
|
||||
add_log_row('smurf_log_level');
|
||||
} else if (me.fwtype === 'vm') {
|
||||
add_boolean_row('enable', gettext('Firewall'), 0);
|
||||
add_boolean_row('dhcp', gettext('DHCP'), 0);
|
||||
add_boolean_row('ndp', gettext('NDP'), 1);
|
||||
add_boolean_row('dhcp', 'DHCP', 0);
|
||||
add_boolean_row('ndp', 'NDP', 1);
|
||||
add_boolean_row('radv', gettext('Router Advertisement'), 0);
|
||||
add_boolean_row('macfilter', gettext('MAC filter'), 1);
|
||||
add_boolean_row('ipfilter', gettext('IP filter'), 0);
|
||||
|
@ -57,7 +57,7 @@ Ext.define('PVE.lxc.Options', {
|
||||
defaultValue: PVE.Utils.unknownText
|
||||
},
|
||||
console: {
|
||||
header: gettext('/dev/console'),
|
||||
header: '/dev/console',
|
||||
defaultValue: 1,
|
||||
renderer: PVE.Utils.format_enabled_toggle,
|
||||
editor: caps.vms['VM.Config.Options'] ? {
|
||||
|
@ -49,7 +49,7 @@ Ext.define('PVE.node.DiskList', {
|
||||
dataIndex: 'size'
|
||||
},
|
||||
{
|
||||
header: gettext('GPT'),
|
||||
header: 'GPT',
|
||||
width: 60,
|
||||
align: 'right',
|
||||
renderer: function(value) {
|
||||
|
Loading…
Reference in New Issue
Block a user