update po files
more gettext cleanups
This commit is contained in:
parent
2c94fbdd3f
commit
513ba6743f
462
po/messages.pot
462
po/messages.pot
File diff suppressed because it is too large
Load Diff
1132
po/pt_BR.po
1132
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
893
po/zh_CN.po
893
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
@ -39,7 +39,7 @@ Ext.define('PVE.qemu.MemoryInputPanel', {
|
||||
xtype: 'radiofield',
|
||||
name: 'memoryType',
|
||||
inputValue: 'fixed',
|
||||
boxLabel: 'Use fixed size memory',
|
||||
boxLabel: gettext('Use fixed size memory'),
|
||||
checked: true,
|
||||
listeners: {
|
||||
change: function(f, value) {
|
||||
@ -150,7 +150,7 @@ Ext.define('PVE.qemu.MemoryEdit', {
|
||||
Ext.apply(me, {
|
||||
subject: gettext('Memory'),
|
||||
items: [ Ext.create('PVE.qemu.MemoryInputPanel') ],
|
||||
width: 350
|
||||
width: 400
|
||||
});
|
||||
|
||||
me.callParent();
|
||||
|
@ -70,7 +70,7 @@ Ext.define('PVE.window.Snapshot', {
|
||||
xtype: me.snapname ? 'displayfield' : 'textfield',
|
||||
name: 'snapname',
|
||||
value: me.snapname,
|
||||
fieldLabel: 'Snapshot Name',
|
||||
fieldLabel: gettext('Name'),
|
||||
vtype: 'StorageId',
|
||||
allowBlank: false
|
||||
}
|
||||
@ -80,7 +80,7 @@ Ext.define('PVE.window.Snapshot', {
|
||||
items.push({
|
||||
xtype: 'displayfield',
|
||||
name: 'snaptime',
|
||||
fieldLabel: 'Timestamp'
|
||||
fieldLabel: gettext('Timestamp')
|
||||
});
|
||||
} else {
|
||||
items.push({
|
||||
@ -89,7 +89,7 @@ Ext.define('PVE.window.Snapshot', {
|
||||
uncheckedValue: 0,
|
||||
defaultValue: 0,
|
||||
checked: 1,
|
||||
fieldLabel: 'Include RAM'
|
||||
fieldLabel: gettext('Include RAM')
|
||||
});
|
||||
}
|
||||
|
||||
@ -97,7 +97,7 @@ Ext.define('PVE.window.Snapshot', {
|
||||
xtype: 'textareafield',
|
||||
grow: true,
|
||||
name: 'description',
|
||||
fieldLabel: 'Description'
|
||||
fieldLabel: gettext('Description')
|
||||
});
|
||||
|
||||
if (me.snapname) {
|
||||
@ -128,7 +128,7 @@ Ext.define('PVE.window.Snapshot', {
|
||||
var submitBtn;
|
||||
|
||||
if (me.snapname) {
|
||||
me.title = "Edit Snapshot '" + me.snapname + " of VM " + me.vmid;
|
||||
me.title = gettext('Edit') + ': ' + gettext('Snapshot');
|
||||
submitBtn = Ext.create('Ext.Button', {
|
||||
text: gettext('Update'),
|
||||
handler: function() {
|
||||
|
@ -246,7 +246,7 @@ Ext.define('PVE.qemu.SnapshotTree', {
|
||||
}
|
||||
},
|
||||
{
|
||||
text: gettext('RAM'),
|
||||
text: 'RAM',
|
||||
align: 'center',
|
||||
resizable: false,
|
||||
dataIndex: 'vmstate',
|
||||
|
Loading…
x
Reference in New Issue
Block a user