Compare commits

..

1 Commits

Author SHA1 Message Date
chrome-storm-c442
259caacb01 v1.9.30: localize terminal OFF overlay (EN/RU/ZH)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 05:46:29 -05:00
4 changed files with 5 additions and 2 deletions

View File

@@ -111,6 +111,7 @@ _EN = {
"term_connecting": "Connecting to {alias}...", "term_connecting": "Connecting to {alias}...",
"term_connected": "Connected to {alias}", "term_connected": "Connected to {alias}",
"term_disconnected": "Disconnected", "term_disconnected": "Disconnected",
"term_off": "OFF",
"ctx_disconnect": "Disconnect", "ctx_disconnect": "Disconnect",
"term_click_to_connect": "Double-click to connect to {alias}", "term_click_to_connect": "Double-click to connect to {alias}",
"sftp_click_to_connect": "Double-click server to browse files", "sftp_click_to_connect": "Double-click server to browse files",
@@ -637,6 +638,7 @@ _RU = {
"term_connecting": "Подключение к {alias}...", "term_connecting": "Подключение к {alias}...",
"term_connected": "Подключено к {alias}", "term_connected": "Подключено к {alias}",
"term_disconnected": "Отключено", "term_disconnected": "Отключено",
"term_off": "ОТКЛ",
"ctx_disconnect": "Отключиться", "ctx_disconnect": "Отключиться",
"term_click_to_connect": "Двойной клик для подключения к {alias}", "term_click_to_connect": "Двойной клик для подключения к {alias}",
"sftp_click_to_connect": "Двойной клик для просмотра файлов", "sftp_click_to_connect": "Двойной клик для просмотра файлов",
@@ -1163,6 +1165,7 @@ _ZH = {
"term_connecting": "正在连接 {alias}...", "term_connecting": "正在连接 {alias}...",
"term_connected": "已连接到 {alias}", "term_connected": "已连接到 {alias}",
"term_disconnected": "已断开", "term_disconnected": "已断开",
"term_off": "已断开",
"ctx_disconnect": "断开连接", "ctx_disconnect": "断开连接",
"term_click_to_connect": "双击连接 {alias}", "term_click_to_connect": "双击连接 {alias}",
"sftp_click_to_connect": "双击服务器浏览文件", "sftp_click_to_connect": "双击服务器浏览文件",

View File

@@ -52,7 +52,7 @@ class TerminalTab(ctk.CTkFrame):
# Overlay "OFF" label (shown when disconnected) # Overlay "OFF" label (shown when disconnected)
self._overlay = ctk.CTkLabel( self._overlay = ctk.CTkLabel(
self._terminal, text="OFF", self._terminal, text=t("term_off"),
font=ctk.CTkFont(size=72, weight="bold"), font=ctk.CTkFont(size=72, weight="bold"),
text_color=("#cccccc", "#333333"), text_color=("#cccccc", "#333333"),
fg_color="transparent", fg_color="transparent",

View File

@@ -1,6 +1,6 @@
"""Version info for ServerManager.""" """Version info for ServerManager."""
__version__ = "1.9.29" __version__ = "1.9.30"
__app_name__ = "ServerManager" __app_name__ = "ServerManager"
__author__ = "aibot777" __author__ = "aibot777"
__description__ = "Desktop GUI for managing remote servers" __description__ = "Desktop GUI for managing remote servers"