From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 9D17770F09 for ; Tue, 17 May 2022 08:52:48 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 869F024849 for ; Tue, 17 May 2022 08:52:18 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id CB78F24824 for ; Tue, 17 May 2022 08:52:16 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 97DA143672 for ; Tue, 17 May 2022 08:52:16 +0200 (CEST) From: Dominik Csapak To: pbs-devel@lists.proxmox.com Date: Tue, 17 May 2022 08:52:15 +0200 Message-Id: <20220517065215.327699-5-d.csapak@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220517065215.327699-1-d.csapak@proxmox.com> References: <20220517065215.327699-1-d.csapak@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -1.482 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% ENA_SUBJ_ODD_CASE 3.2 Subject has odd case KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pbs-devel] [PATCH proxmox-backup 5/5] ui: SyncView/SyncJobEdit: unify store/namespace gettext X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 May 2022 06:52:48 -0000 so that the labels are the same in the list as in the edit window Signed-off-by: Dominik Csapak --- www/config/SyncView.js | 6 +++--- www/window/SyncJobEdit.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/www/config/SyncView.js b/www/config/SyncView.js index a90e9a70..f149cd8a 100644 --- a/www/config/SyncView.js +++ b/www/config/SyncView.js @@ -197,14 +197,14 @@ Ext.define('PBS.config.SyncJobView', { sortable: true, }, { - header: gettext('Namespace'), + header: gettext('Local Namespace'), dataIndex: 'ns', - width: 120, + width: 130, sortable: true, renderer: PBS.Utils.render_optional_namespace, }, { - header: gettext('Remote ID'), + header: gettext('Source Remote'), dataIndex: 'remote', width: 120, sortable: true, diff --git a/www/window/SyncJobEdit.js b/www/window/SyncJobEdit.js index efa1adfc..2c09b354 100644 --- a/www/window/SyncJobEdit.js +++ b/www/window/SyncJobEdit.js @@ -73,7 +73,7 @@ Ext.define('PBS.window.SyncJobEdit', { column1: [ { xtype: 'pmxDisplayEditField', - fieldLabel: gettext('Local Datastore'), + fieldLabel: gettext('Local Store'), name: 'store', submitValue: true, cbind: { @@ -150,7 +150,7 @@ Ext.define('PBS.window.SyncJobEdit', { }, }, { - fieldLabel: gettext('Source Datastore'), + fieldLabel: gettext('Remote Store'), xtype: 'pbsRemoteStoreSelector', allowBlank: false, autoSelect: false, @@ -169,7 +169,7 @@ Ext.define('PBS.window.SyncJobEdit', { }, }, { - fieldLabel: gettext('Source Namespace'), + fieldLabel: gettext('Remote Namespace'), xtype: 'pbsRemoteNamespaceSelector', allowBlank: true, autoSelect: false, -- 2.30.2