[pdm-devel] [PATCH proxmox-datacenter-manager 2/2] do not split translatable strings
    Maximiliano Sandoval 
    m.sandoval at proxmox.com
       
    Wed Jan 22 14:51:16 CET 2025
    
    
  
This removes contexts for translators. Instead add a comment so it is
clean the context.
Signed-off-by: Maximiliano Sandoval <m.sandoval at proxmox.com>
---
 ui/src/configuration/mod.rs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ui/src/configuration/mod.rs b/ui/src/configuration/mod.rs
index 5ec3fe0..ca16685 100644
--- a/ui/src/configuration/mod.rs
+++ b/ui/src/configuration/mod.rs
@@ -22,7 +22,8 @@ pub fn system_configuration() -> Html {
         .with_item_builder(
             TabBarItem::new()
                 .key("network")
-                .label(tr!("Network") + "/" + &tr!("Time"))
+                // TRANSLATORS: As in "Network and Time system configuration"
+                .label(tr!("Network/Time"))
                 .icon_class("fa fa-exchange"),
             |_| html! { <NetworkTimePanel/> },
         )
-- 
2.39.5
    
    
More information about the pdm-devel
mailing list