From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 0DDE81FF153 for ; Wed, 17 Jun 2026 09:35:12 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 2B43B17BDF; Wed, 17 Jun 2026 09:35:11 +0200 (CEST) From: Maximiliano Sandoval To: pdm-devel@lists.proxmox.com Subject: [PATCH proxmox-datacenter-manager] ui: subscription: remove uri from translatable string Date: Wed, 17 Jun 2026 09:32:54 +0200 Message-ID: <20260617073506.92228-1-m.sandoval@proxmox.com> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1781681650333 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.126 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 KAM_SHORT 0.001 Use of a URL Shortener for very short URL 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. [proxmox.com,gnu.org] Message-ID-Hash: 3U5HORYZDZ3CR3LINARRJ35KAQEEMW24 X-Message-ID-Hash: 3U5HORYZDZ3CR3LINARRJ35KAQEEMW24 X-MailFrom: m.sandoval@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 Datacenter Manager development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: This generates a xgettext warning, see https://www.gnu.org/software/gettext/manual/html_node/No-embedded-URLs.html for more details. Signed-off-by: Maximiliano Sandoval --- ui/src/dashboard/subscription_info.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/src/dashboard/subscription_info.rs b/ui/src/dashboard/subscription_info.rs index 50589ebd..a344010b 100644 --- a/ui/src/dashboard/subscription_info.rs +++ b/ui/src/dashboard/subscription_info.rs @@ -51,7 +51,8 @@ fn render_subscription_status(subs: &[RemoteSubscriptions]) -> Row { let (status, title, msg) = if none > 0 { let msg = tr!( - "At least one remote does not have a valid subscription. Please visit www.proxmox.com to get a list of available options." + "At least one remote does not have a valid subscription. Please visit {url} to get a list of available options.", + url = "www.proxmox.com", ); let msg = Html::from_html_unchecked(msg.into()); -- 2.47.3