瀏覽代碼

chore: Shorten text to prevent Windows tooltip truncation.

wonfen 6 月之前
父節點
當前提交
aa8f6f4ad6
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src-tauri/src/core/tray.rs

+ 3 - 3
src-tauri/src/core/tray.rs

@@ -297,11 +297,11 @@ impl Tray {
         };
         let _ = tray.set_tooltip(&format!(
             "Clash Verge {version}\n{}: {}\n{}: {}\n{}: {}",
-            t!("System Proxy", "系统代理"),
+            t!("SysProxy", "系统代理"),
             switch_map[system_proxy],
-            t!("TUN Mode", "Tun 模式"),
+            t!("TUN", "Tun模式"),
             switch_map[tun_mode],
-            t!("Curent Profile", "当前订阅"),
+            t!("Profile", "当前订阅"),
             current_profile_name
         ));