ui: consistently spell Datastore without space between words
Not even hard feeling on 'Datastore' vs. 'Data Store' but consistency is desired in such names. Talked shortly with Dominik, which also slightly favored the one without space - so just go for that one. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
c426e65893
commit
58f950c546
|
@ -40,7 +40,7 @@ Ext.define('PBS.DataStorePanel', {
|
||||||
|
|
||||||
initComponent: function() {
|
initComponent: function() {
|
||||||
let me = this;
|
let me = this;
|
||||||
me.title = `${gettext("Data Store")}: ${me.datastore}`;
|
me.title = `${gettext("Datastore")}: ${me.datastore}`;
|
||||||
me.callParent();
|
me.callParent();
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -80,7 +80,7 @@ Ext.define('PBS.store.NavigationStore', {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: gettext('Data Store'),
|
text: gettext('Datastore'),
|
||||||
iconCls: 'fa fa-archive',
|
iconCls: 'fa fa-archive',
|
||||||
path: 'pbsDataStoreConfig',
|
path: 'pbsDataStoreConfig',
|
||||||
expanded: true,
|
expanded: true,
|
||||||
|
|
|
@ -25,7 +25,7 @@ Ext.define('PBS.DataStoreConfig', {
|
||||||
extend: 'Ext.grid.GridPanel',
|
extend: 'Ext.grid.GridPanel',
|
||||||
alias: 'widget.pbsDataStoreConfig',
|
alias: 'widget.pbsDataStoreConfig',
|
||||||
|
|
||||||
title: gettext('Data Store Configuration'),
|
title: gettext('Datastore Configuration'),
|
||||||
|
|
||||||
controller: {
|
controller: {
|
||||||
xclass: 'Ext.app.ViewController',
|
xclass: 'Ext.app.ViewController',
|
||||||
|
|
|
@ -16,7 +16,7 @@ Ext.define('PBS.form.DataStoreSelector', {
|
||||||
listConfig: {
|
listConfig: {
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
header: gettext('DataStore'),
|
header: gettext('Datastore'),
|
||||||
sortable: true,
|
sortable: true,
|
||||||
dataIndex: 'store',
|
dataIndex: 'store',
|
||||||
renderer: Ext.String.htmlEncode,
|
renderer: Ext.String.htmlEncode,
|
||||||
|
|
Loading…
Reference in New Issue