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 529ED1FF183 for ; Wed, 30 Jul 2025 12:37:42 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 61449A563; Wed, 30 Jul 2025 12:38:58 +0200 (CEST) From: Maximiliano Sandoval To: pve-devel@lists.proxmox.com Date: Wed, 30 Jul 2025 12:38:22 +0200 Message-ID: <20250730103825.233570-16-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: 1753871894568 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.096 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 pve-yew-mobile-gui v2 1/1] improve 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" Signed-off-by: Maximiliano Sandoval --- src/pages/page_lxc_status/config_panel.rs | 2 +- src/pages/page_node_status/services_panel.rs | 4 ++-- src/pages/page_qemu_status/hardware_panel.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/page_lxc_status/config_panel.rs b/src/pages/page_lxc_status/config_panel.rs index 7ec0fba..d9d2565 100644 --- a/src/pages/page_lxc_status/config_panel.rs +++ b/src/pages/page_lxc_status/config_panel.rs @@ -139,7 +139,7 @@ impl PveLxcConfigPanel { )); list.push(form_list_tile( - tr!("Unpriviledged"), + tr!("Unprivileged"), data.unprivileged.unwrap_or(false).to_string(), None, )); diff --git a/src/pages/page_node_status/services_panel.rs b/src/pages/page_node_status/services_panel.rs index a1dfc9c..35003d9 100644 --- a/src/pages/page_node_status/services_panel.rs +++ b/src/pages/page_node_status/services_panel.rs @@ -72,9 +72,9 @@ impl PveNodeServicesPanel { }); let msg = if all_running { - tr!("All required services running") + tr!("All required services are running") } else { - tr!("One or more required services not running") + tr!("One or more required services is not running") }; title_subtitle_column(msg, None::<&str>).padding(2).into() diff --git a/src/pages/page_qemu_status/hardware_panel.rs b/src/pages/page_qemu_status/hardware_panel.rs index eb04b66..c45836c 100644 --- a/src/pages/page_qemu_status/hardware_panel.rs +++ b/src/pages/page_qemu_status/hardware_panel.rs @@ -79,7 +79,7 @@ impl PveQemuHardwarePanel { data.bios .as_ref() .map(|b| b.to_string()) - .unwrap_or(format!("{} (SeaBIOS)", tr!("Default)"))), + .unwrap_or(format!("{} (SeaBIOS)", tr!("Default"))), tr!("Bios"), None, )); -- 2.47.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel