Commit 513ba674 authored by Dietmar Maurer's avatar Dietmar Maurer

update po files

more gettext cleanups
parent 2c94fbdd
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -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',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment