]> git.proxmox.com Git - proxmox-backup.git/commitdiff
ui: consistently spell Datastore without space between words
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 2 Jul 2020 15:20:38 +0000 (17:20 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 2 Jul 2020 15:20:41 +0000 (17:20 +0200)
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>
www/DataStorePanel.js
www/NavigationTree.js
www/config/DataStoreConfig.js
www/form/DataStoreSelector.js

index 857909021210594ddfca94119b00d0ac792da94b..2739614d383822f09c2fcccbf29e5e6893d09ad5 100644 (file)
@@ -40,7 +40,7 @@ Ext.define('PBS.DataStorePanel', {
 
     initComponent: function() {
        let me = this;
-       me.title = `${gettext("Data Store")}: ${me.datastore}`;
+       me.title = `${gettext("Datastore")}: ${me.datastore}`;
        me.callParent();
     },
 });
index 8e75ea350db85d3425e2faca3975ee7924955b65..d36e25e8f90b17115e0ee014631bbba32577d6cc 100644 (file)
@@ -80,7 +80,7 @@ Ext.define('PBS.store.NavigationStore', {
                ]
            },
            {
-               text: gettext('Data Store'),
+               text: gettext('Datastore'),
                iconCls: 'fa fa-archive',
                path: 'pbsDataStoreConfig',
                expanded: true,
index 3bb90f075e39aaa1933ba61ffb412113b25dd9e3..54d7a5050cd786a2cbaa82500cb80cc773d01262 100644 (file)
@@ -25,7 +25,7 @@ Ext.define('PBS.DataStoreConfig', {
     extend: 'Ext.grid.GridPanel',
     alias: 'widget.pbsDataStoreConfig',
 
-    title: gettext('Data Store Configuration'),
+    title: gettext('Datastore Configuration'),
 
     controller: {
        xclass: 'Ext.app.ViewController',
index 692ca6a57b5d8bc7ffadea742f01267aae2118d2..a1471a84ba8451bf2d5bdf1ecb8575fd66964c1f 100644 (file)
@@ -16,7 +16,7 @@ Ext.define('PBS.form.DataStoreSelector', {
     listConfig: {
        columns: [
            {
-               header: gettext('DataStore'),
+               header: gettext('Datastore'),
                sortable: true,
                dataIndex: 'store',
                renderer: Ext.String.htmlEncode,