From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id AA78D1FF183 for ; Wed, 30 Jul 2025 12:38:03 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 02B82A671; Wed, 30 Jul 2025 12:39:01 +0200 (CEST) From: Maximiliano Sandoval To: pve-devel@lists.proxmox.com Date: Wed, 30 Jul 2025 12:38:08 +0200 Message-ID: <20250730103825.233570-2-m.sandoval@proxmox.com> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250730103825.233570-1-m.sandoval@proxmox.com> References: <20250730103825.233570-1-m.sandoval@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1753871894401 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.097 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy 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 Subject: [pve-devel] [PATCH manager v2 1/3] add context to translatable strings X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" These will be displayed in translator editors and provide context for translators. Signed-off-by: Maximiliano Sandoval --- www/manager6/grid/BackupView.js | 1 + www/manager6/sdn/fabrics/openfabric/FabricEdit.js | 3 +++ www/manager6/sdn/zones/VxlanEdit.js | 1 + www/manager6/storage/BackupView.js | 1 + www/manager6/storage/Base.js | 1 + www/manager6/window/Backup.js | 1 + 6 files changed, 8 insertions(+) diff --git a/www/manager6/grid/BackupView.js b/www/manager6/grid/BackupView.js index d17c94b9..c1474e04 100644 --- a/www/manager6/grid/BackupView.js +++ b/www/manager6/grid/BackupView.js @@ -376,6 +376,7 @@ Ext.define('PVE.grid.BackupView', { renderer: PVE.Utils.render_backup_encryption, }, { + // TRANSLATORS: The state of the verification task header: gettext('Verify State'), dataIndex: 'verification', renderer: PVE.Utils.render_backup_verification, diff --git a/www/manager6/sdn/fabrics/openfabric/FabricEdit.js b/www/manager6/sdn/fabrics/openfabric/FabricEdit.js index 46dd61c4..14b71fae 100644 --- a/www/manager6/sdn/fabrics/openfabric/FabricEdit.js +++ b/www/manager6/sdn/fabrics/openfabric/FabricEdit.js @@ -43,6 +43,7 @@ Ext.define('PVE.sdn.Fabric.OpenFabric.Fabric.Edit', { }, { xtype: 'proxmoxintegerfield', + // TRANSLATORS: See https://en.wikipedia.org/wiki/IS-IS#Packet_types fieldLabel: gettext('Hello Interval'), labelWidth: 120, name: 'hello_interval', @@ -55,6 +56,8 @@ Ext.define('PVE.sdn.Fabric.OpenFabric.Fabric.Edit', { }, { xtype: 'proxmoxintegerfield', + // TRANSLATORS: Stands for Complete Sequence Number Packet, see + // https://datatracker.ietf.org/doc/html/draft-ietf-lsr-distoptflood#name-flooding-failures fieldLabel: gettext('CSNP Interval'), labelWidth: 120, name: 'csnp_interval', diff --git a/www/manager6/sdn/zones/VxlanEdit.js b/www/manager6/sdn/zones/VxlanEdit.js index 20e1c5bb..e45154a8 100644 --- a/www/manager6/sdn/zones/VxlanEdit.js +++ b/www/manager6/sdn/zones/VxlanEdit.js @@ -61,6 +61,7 @@ Ext.define('PVE.sdn.zones.VxlanInputPanel', { width: 600, columns: [ { + // TRANSLATORS: As in "Network Fabric": https://en.wikipedia.org/wiki/Switched_fabric header: gettext('Fabric'), width: 90, dataIndex: 'iface', diff --git a/www/manager6/storage/BackupView.js b/www/manager6/storage/BackupView.js index d2d1c0e6..f43c172d 100644 --- a/www/manager6/storage/BackupView.js +++ b/www/manager6/storage/BackupView.js @@ -213,6 +213,7 @@ Ext.define('PVE.storage.BackupView', { }, }; me.extraColumns.verification = { + // TRANSLATORS: The state of the verification task header: gettext('Verify State'), dataIndex: 'verification', renderer: PVE.Utils.render_backup_verification, diff --git a/www/manager6/storage/Base.js b/www/manager6/storage/Base.js index 98f004bd..d4b29f92 100644 --- a/www/manager6/storage/Base.js +++ b/www/manager6/storage/Base.js @@ -81,6 +81,7 @@ Ext.define('PVE.panel.StorageBase', { addAdvancedWidget({ xtype: 'proxmoxcheckbox', name: 'snapshot-as-volume-chain', + // TRANSLATORS: As in "following the chain of volumes" boxLabel: gettext('Allow Snapshots as Volume-Chain'), deleteEmpty: !me.isCreate, // can only allow to enable this on creation for storages that previously already diff --git a/www/manager6/window/Backup.js b/www/manager6/window/Backup.js index 65ec9659..7c1c54de 100644 --- a/www/manager6/window/Backup.js +++ b/www/manager6/window/Backup.js @@ -41,6 +41,7 @@ Ext.define('PVE.window.Backup', { xtype: 'proxmoxKVComboBox', comboItems: [ ['notification-system', gettext('Use global settings')], + // TRANSLATORS: sendmail is a piece of software ['legacy-sendmail', gettext('Use sendmail (legacy)')], ], fieldLabel: gettext('Notification'), -- 2.47.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel