Commit 689b7411 authored by Dietmar Maurer's avatar Dietmar Maurer

i18n: add missing gettext calls

parent d4ed4a6b
...@@ -102,22 +102,22 @@ Ext.define('PVE.node.Ceph', { ...@@ -102,22 +102,22 @@ Ext.define('PVE.node.Ceph', {
items: [ items: [
{ {
xtype: 'pveNodeCephStatus', xtype: 'pveNodeCephStatus',
title: 'Status', title: gettext('Status'),
itemId: 'status' itemId: 'status'
}, },
{ {
xtype: 'pveNodeCephConfig', xtype: 'pveNodeCephConfig',
title: 'Config', title: gettext('Config'),
itemId: 'config' itemId: 'config'
}, },
{ {
xtype: 'pveNodeCephMonList', xtype: 'pveNodeCephMonList',
title: 'Monitor', title: gettext('Monitor'),
itemId: 'monlist' itemId: 'monlist'
}, },
{ {
xtype: 'pveNodeCephDiskList', xtype: 'pveNodeCephDiskList',
title: 'Disks', title: gettext('Disks'),
itemId: 'disklist' itemId: 'disklist'
}, },
{ {
...@@ -127,7 +127,7 @@ Ext.define('PVE.node.Ceph', { ...@@ -127,7 +127,7 @@ Ext.define('PVE.node.Ceph', {
}, },
{ {
xtype: 'pveNodeCephPoolList', xtype: 'pveNodeCephPoolList',
title: 'Pools', title: gettext('Pools'),
itemId: 'pools' itemId: 'pools'
}, },
{ {
...@@ -136,7 +136,7 @@ Ext.define('PVE.node.Ceph', { ...@@ -136,7 +136,7 @@ Ext.define('PVE.node.Ceph', {
itemId: 'crushmap' itemId: 'crushmap'
}, },
{ {
title: 'Log', title: gettext('Log'),
itemId: 'log', itemId: 'log',
xtype: 'pveLogView', xtype: 'pveLogView',
url: "/api2/extjs/nodes/" + nodename + "/ceph/log" url: "/api2/extjs/nodes/" + nodename + "/ceph/log"
......
...@@ -107,8 +107,8 @@ Ext.define('PVE.window.Snapshot', { ...@@ -107,8 +107,8 @@ Ext.define('PVE.window.Snapshot', {
height: 200, height: 200,
store: summarystore, store: summarystore,
columns: [ columns: [
{header: 'Key', width: 150, dataIndex: 'key'}, {header: gettext('Key'), width: 150, dataIndex: 'key'},
{header: 'Value', flex: 1, dataIndex: 'value'} {header: gettext('Value'), flex: 1, dataIndex: 'value'}
] ]
}); });
} }
......
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