some more gettext cleanups, update po files

Includes full german translation.
This commit is contained in:
Dietmar Maurer 2013-08-29 12:02:39 +02:00
parent 86dc1dce61
commit c59a85a1cf
30 changed files with 13681 additions and 3294 deletions

998
po/ca.po

File diff suppressed because it is too large Load Diff

998
po/da.po

File diff suppressed because it is too large Load Diff

944
po/de.po

File diff suppressed because it is too large Load Diff

997
po/es.po

File diff suppressed because it is too large Load Diff

1013
po/fr.po

File diff suppressed because it is too large Load Diff

998
po/it.po

File diff suppressed because it is too large Load Diff

1226
po/ja.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1006
po/nb.po

File diff suppressed because it is too large Load Diff

1006
po/nn.po

File diff suppressed because it is too large Load Diff

998
po/pl.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

997
po/ru.po

File diff suppressed because it is too large Load Diff

997
po/sl.po

File diff suppressed because it is too large Load Diff

996
po/sv.po

File diff suppressed because it is too large Load Diff

998
po/tr.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -469,7 +469,7 @@ Ext.define('PVE.Utils', { statics: {
task_desc_table: {
vncproxy: [ 'VM/CT', gettext('Console') ],
spiceproxy: [ 'VM/CT', gettext('Spice Console') ],
spiceproxy: [ 'VM/CT', gettext('Console') + ' (Spice)' ],
vncshell: [ '', gettext('Shell') ],
qmsnapshot: [ 'VM', gettext('Snapshot') ],
qmrollback: [ 'VM', gettext('Rollback') ],

View File

@ -160,7 +160,7 @@ Ext.define('PVE.ConsoleWorkspace', {
content = {
border: false,
bodyPadding: 10,
html: gettext('Error: No such console type')
html: gettext('Error') + ': No such console type'
};
}

View File

@ -82,7 +82,7 @@ Ext.define('PVE.dc.AuthView', {
menu: new Ext.menu.Menu({
items: [
{
text: gettext('Active Directory server'),
text: gettext('Active Directory Server'),
handler: function() {
var win = Ext.create('PVE.dc.AuthEdit', {
authType: 'ad'

View File

@ -48,7 +48,7 @@ Ext.define('PVE.node.StatusView', {
memory: { header: gettext('RAM usage'), required: true, renderer: render_meminfo },
swap: { header: gettext('SWAP usage'), required: true, renderer: render_meminfo },
ksm: { header: gettext('KSM sharing'), required: true, renderer: render_ksm },
rootfs: { header: gettext('HD space (root)'), required: true, renderer: render_meminfo },
rootfs: { header: gettext('HD space') + ' (root)', required: true, renderer: render_meminfo },
pveversion: { header: gettext('PVE Manager version'), required: true },
kversion: { header: gettext('Kernel version'), required: true }
};

View File

@ -64,7 +64,7 @@ Ext.define('PVE.openvz.Summary', {
},
{
xtype: 'pveRRDView',
title: gettext('CPU usage %'),
title: gettext('CPU usage'),
pveSelNode: me.pveSelNode,
datasource: 'cpu',
rrdurl: rrdurl

View File

@ -137,13 +137,13 @@ Ext.define('PVE.window.Clone', {
col1.push(me.targetSel);
var modelist = [['copy', 'Full Clone']];
var modelist = [['copy', gettext('Full Clone')]];
if (me.isTemplate) {
modelist.push(['clone', 'Linked Clone']);
modelist.push(['clone', gettext('Linked Clone')]);
}
me.kv1 = Ext.create('PVE.form.KVComboBox', {
fieldLabel: gettext('Clone Mode'),
fieldLabel: gettext('Mode'),
name: 'clonemode',
allowBlank: false,
value: me.isTemplate ? 'clone' : 'copy',

View File

@ -119,7 +119,7 @@ Ext.define('PVE.qemu.Config', {
});
var spiceBtn = Ext.create('Ext.Button', {
text: gettext('Spice'),
text: 'SPICE',
disabled: !caps.vms['VM.Console'],
handler: function() {
Ext.core.DomHelper.append(document.body, {

View File

@ -137,7 +137,7 @@ Ext.define('PVE.qemu.NetworkInputPanel', {
{
xtype: 'numberfield',
name: 'rate',
fieldLabel: gettext('Rate limit (MB/s)'),
fieldLabel: gettext('Rate limit') + ' (MB/s)',
minValue: 0,
maxValue: 10*1024,
value: '',

View File

@ -41,7 +41,7 @@ Ext.define('PVE.qemu.OSTypeInputPanel', {
me.column2 = [
{
xtype: 'component',
html: 'Linux/' + gettext('Other'),
html: 'Linux/' + gettext('Other OS types'),
cls:'x-form-check-group-label'
},
{

View File

@ -46,7 +46,7 @@ Ext.define('PVE.qemu.ProcessorInputPanel', {
xtype: 'CPUModelSelector',
name: 'cpu',
value: '',
fieldLabel: gettext('CPU type')
fieldLabel: gettext('Type')
},
{
xtype: 'displayfield',

View File

@ -59,7 +59,7 @@ Ext.define('PVE.qemu.Summary', {
},
{
xtype: 'pveRRDView',
title: gettext('CPU usage %'),
title: gettext('CPU usage'),
pveSelNode: me.pveSelNode,
datasource: 'cpu',
rrdurl: rrdurl

View File

@ -84,7 +84,7 @@ Ext.define('PVE.window.Migrate', {
});
Ext.apply(me, {
title: gettext('Migrate VM') + " " + me.vmid,
title: gettext('Migrate') + ' VM ' + me.vmid,
width: 350,
modal: true,
layout: 'auto',

View File

@ -102,7 +102,7 @@ Ext.define('PVE.window.Restore', {
if (me.vmid) {
var msg = gettext('Are you sure you want to restore this VM?') + ' ' +
gettext('This will permanently erase current VM data.');
Ext.Msg.confirm(gettext('Confirmation'), msg, function(btn) {
Ext.Msg.confirm(gettext('Confirm'), msg, function(btn) {
if (btn !== 'yes') {
return;
}
@ -118,7 +118,8 @@ Ext.define('PVE.window.Restore', {
submitBtn.setDisabled(!valid);
});
var title = (me.vmtype === 'openvz') ? gettext('Restore CT') : gettext('Restore VM');
var title = (me.vmtype === 'openvz') ? gettext('Restore CT') :
gettext('Restore VM');
Ext.apply(me, {
title: title,