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 3C2B71FF136 for ; Mon, 18 May 2026 15:24:03 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id EC11712ED8; Mon, 18 May 2026 15:23:54 +0200 (CEST) From: Shannon Sterz To: pve-devel@lists.proxmox.com Subject: [PATCH manager v2 3/3] ui: prefix panel: adjust capitalization of "prefix list" Date: Mon, 18 May 2026 15:23:47 +0200 Message-ID: <20260518132347.291801-4-s.sterz@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260518132347.291801-1-s.sterz@proxmox.com> References: <20260518132347.291801-1-s.sterz@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1779110616889 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.114 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 URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [frrouting.org] Message-ID-Hash: 5RT3TAJ3INST7MBAI2PLR4YS3WXKUM2G X-Message-ID-Hash: 5RT3TAJ3INST7MBAI2PLR4YS3WXKUM2G X-MailFrom: s.sterz@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: "prefix list" is not a proper noun and as such should follow regular english capitalization rules. this is in-line with how frr treats this term [1]. [1]: https://docs.frrouting.org/en/latest/filter.html#ip-prefix-list Suggested-by: Gabriel Goller Signed-off-by: Shannon Sterz --- www/manager6/sdn/PrefixListPanel.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/manager6/sdn/PrefixListPanel.js b/www/manager6/sdn/PrefixListPanel.js index 05ec3655a..f1a406acc 100644 --- a/www/manager6/sdn/PrefixListPanel.js +++ b/www/manager6/sdn/PrefixListPanel.js @@ -201,7 +201,7 @@ Ext.define('PVE.sdn.PrefixListEntriesView', { // TRANSLATORS: Refers to an FRR prefix list, some languages may prefer to // keep "prefix list" as-is: // https://docs.frrouting.org/en/latest/filter.html#ip-prefix-list - emptyText: gettext('Prefix List has no entries configured.'), + emptyText: gettext('Prefix list has no entries configured.'), config: { prefixList: null, @@ -306,11 +306,11 @@ Ext.define('PVE.sdn.PrefixListPanel', { // TRANSLATORS: Refers to an FRR prefix list, some // languages may prefer to keep "prefix list" as-is: // https://docs.frrouting.org/en/latest/filter.html#ip-prefix-list - ? gettext('Prefix List has no entries configured.') + ? gettext('Prefix list has no entries configured.') // TRANSLATORS: Refers to an FRR prefix list, some // languages may prefer to keep "prefix list" as-is: // https://docs.frrouting.org/en/latest/filter.html#ip-prefix-list - : gettext('no Prefix List selected'); + : gettext('No prefix list selected'); }, }, }, -- 2.47.3