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