From 6b8d2a33c023ff3978971eecd54eba7b2ee30a46 Mon Sep 17 00:00:00 2001 From: rustdesk Date: Mon, 10 Jul 2023 23:02:26 +0800 Subject: [PATCH] fix lang --- flutter/lib/mobile/pages/home_page.dart | 4 ++-- src/lang/ca.rs | 6 ++++-- src/lang/cn.rs | 6 ++++-- src/lang/cs.rs | 6 ++++-- src/lang/da.rs | 6 ++++-- src/lang/de.rs | 6 ++++-- src/lang/el.rs | 6 ++++-- src/lang/eo.rs | 6 ++++-- src/lang/es.rs | 6 ++++-- src/lang/fa.rs | 6 ++++-- src/lang/fr.rs | 6 ++++-- src/lang/hu.rs | 6 ++++-- src/lang/id.rs | 6 ++++-- src/lang/it.rs | 6 ++++-- src/lang/ja.rs | 6 ++++-- src/lang/ko.rs | 6 ++++-- src/lang/kz.rs | 6 ++++-- src/lang/lt.rs | 6 ++++-- src/lang/nl.rs | 6 ++++-- src/lang/pl.rs | 6 ++++-- src/lang/pt_PT.rs | 6 ++++-- src/lang/ptbr.rs | 6 ++++-- src/lang/ro.rs | 6 ++++-- src/lang/ru.rs | 6 ++++-- src/lang/sk.rs | 6 ++++-- src/lang/sl.rs | 6 ++++-- src/lang/sq.rs | 6 ++++-- src/lang/sr.rs | 6 ++++-- src/lang/sv.rs | 6 ++++-- src/lang/template.rs | 6 ++++-- src/lang/th.rs | 6 ++++-- src/lang/tr.rs | 6 ++++-- src/lang/tw.rs | 6 ++++-- src/lang/ua.rs | 6 ++++-- src/lang/vn.rs | 6 ++++-- 35 files changed, 138 insertions(+), 70 deletions(-) diff --git a/flutter/lib/mobile/pages/home_page.dart b/flutter/lib/mobile/pages/home_page.dart index 5713830bc..1fb75c1d1 100644 --- a/flutter/lib/mobile/pages/home_page.dart +++ b/flutter/lib/mobile/pages/home_page.dart @@ -108,8 +108,8 @@ class _HomePageState extends State { children: [ Tooltip( message: currentKey.isOut - ? translate('outgoing connection') - : translate('incomming connection'), + ? translate('Outgoing connection') + : translate('Incoming connection'), child: Icon( currentKey.isOut ? Icons.call_made_rounded diff --git a/src/lang/ca.rs b/src/lang/ca.rs index 9835c0704..f65f8b6dc 100644 --- a/src/lang/ca.rs +++ b/src/lang/ca.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/cn.rs b/src/lang/cn.rs index 3a2a6ebd0..5aa3c0af2 100644 --- a/src/lang/cn.rs +++ b/src/lang/cn.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "接受并提权"), ("accept_and_elevate_btn_tooltip", "接受连接并提升 UAC 权限"), ("clipboard_wait_response_timeout_tip", "等待拷贝响应超时"), - ("incomming connection", "收到的连接"), - ("outgoing connection", "发起的连接"), + ("Incoming connection", "收到的连接"), + ("Outgoing connection", "发起的连接"), + ("Exit", "退出"), + ("Open", "打开"), ].iter().cloned().collect(); } diff --git a/src/lang/cs.rs b/src/lang/cs.rs index 945493799..08dc61ad7 100644 --- a/src/lang/cs.rs +++ b/src/lang/cs.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/da.rs b/src/lang/da.rs index e57a43b4e..24a0b94a7 100644 --- a/src/lang/da.rs +++ b/src/lang/da.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/de.rs b/src/lang/de.rs index 38e1bb4c1..fd384738b 100644 --- a/src/lang/de.rs +++ b/src/lang/de.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "Akzeptieren und Rechte erhöhen"), ("accept_and_elevate_btn_tooltip", "Akzeptieren Sie die Verbindung und erhöhen Sie die UAC-Berechtigungen."), ("clipboard_wait_response_timeout_tip", "Zeitüberschreitung beim Warten auf die Antwort der Kopie."), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/el.rs b/src/lang/el.rs index cb5d627e7..acae40de8 100644 --- a/src/lang/el.rs +++ b/src/lang/el.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/eo.rs b/src/lang/eo.rs index dd8fc25d0..e7dcee61e 100644 --- a/src/lang/eo.rs +++ b/src/lang/eo.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/es.rs b/src/lang/es.rs index 351fa90ee..494ef8f4a 100644 --- a/src/lang/es.rs +++ b/src/lang/es.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "Aceptar y Elevar"), ("accept_and_elevate_btn_tooltip", "Aceptar la conexión y elevar permisos UAC."), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/fa.rs b/src/lang/fa.rs index 92a080212..0f84f6f2b 100644 --- a/src/lang/fa.rs +++ b/src/lang/fa.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "بپذیرید و افزایش دهید"), ("accept_and_elevate_btn_tooltip", "را افزایش دهید UAC اتصال را بپذیرید و مجوزهای."), ("clipboard_wait_response_timeout_tip", "زمان انتظار برای مشخص شدن وضعیت کپی تمام شد."), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/fr.rs b/src/lang/fr.rs index 885b2c17a..55bacc7b6 100644 --- a/src/lang/fr.rs +++ b/src/lang/fr.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/hu.rs b/src/lang/hu.rs index 67c1b366a..d31bdbafb 100644 --- a/src/lang/hu.rs +++ b/src/lang/hu.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/id.rs b/src/lang/id.rs index 637cb6ea1..d4372470e 100644 --- a/src/lang/id.rs +++ b/src/lang/id.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/it.rs b/src/lang/it.rs index 879efcb29..e6ebc86fd 100644 --- a/src/lang/it.rs +++ b/src/lang/it.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "Accetta ed eleva"), ("accept_and_elevate_btn_tooltip", "Accetta la connessione ed eleva le autorizzazioni UAC."), ("clipboard_wait_response_timeout_tip", "Timeout attesa risposta della copia."), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/ja.rs b/src/lang/ja.rs index 14e572010..a2547d44c 100644 --- a/src/lang/ja.rs +++ b/src/lang/ja.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/ko.rs b/src/lang/ko.rs index 878cb3821..6e8c951d2 100644 --- a/src/lang/ko.rs +++ b/src/lang/ko.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/kz.rs b/src/lang/kz.rs index b811820da..66ffab41d 100644 --- a/src/lang/kz.rs +++ b/src/lang/kz.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/lt.rs b/src/lang/lt.rs index ad702dfa0..4f5e80ca5 100644 --- a/src/lang/lt.rs +++ b/src/lang/lt.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/nl.rs b/src/lang/nl.rs index cff145f39..3b2549670 100644 --- a/src/lang/nl.rs +++ b/src/lang/nl.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "Accepteren en Verheffen"), ("accept_and_elevate_btn_tooltip", "Accepteer de verbinding en verhoog de UAC-machtigingen."), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/pl.rs b/src/lang/pl.rs index 8d9a3b533..5dc16fc24 100644 --- a/src/lang/pl.rs +++ b/src/lang/pl.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "Akceptuj i Podnieś uprawnienia"), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/pt_PT.rs b/src/lang/pt_PT.rs index 26069573a..fe4ac2d5e 100644 --- a/src/lang/pt_PT.rs +++ b/src/lang/pt_PT.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/ptbr.rs b/src/lang/ptbr.rs index 25de11130..9f7066990 100644 --- a/src/lang/ptbr.rs +++ b/src/lang/ptbr.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/ro.rs b/src/lang/ro.rs index 25dd4655f..c84bc8edd 100644 --- a/src/lang/ro.rs +++ b/src/lang/ro.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/ru.rs b/src/lang/ru.rs index f1fc7c045..9d26fa268 100644 --- a/src/lang/ru.rs +++ b/src/lang/ru.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "Принять и повысить"), ("accept_and_elevate_btn_tooltip", "Разрешить подключение и повысить права UAC."), ("clipboard_wait_response_timeout_tip", "Время ожидания копирования буфера обмена, истекло"), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/sk.rs b/src/lang/sk.rs index 4350615a1..84c231b93 100644 --- a/src/lang/sk.rs +++ b/src/lang/sk.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/sl.rs b/src/lang/sl.rs index 73011b67b..2a21362dd 100755 --- a/src/lang/sl.rs +++ b/src/lang/sl.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/sq.rs b/src/lang/sq.rs index 927b84f4e..bd69fdafd 100644 --- a/src/lang/sq.rs +++ b/src/lang/sq.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/sr.rs b/src/lang/sr.rs index b86dece15..9b74e946a 100644 --- a/src/lang/sr.rs +++ b/src/lang/sr.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/sv.rs b/src/lang/sv.rs index 423fdfd17..2e74caf9e 100644 --- a/src/lang/sv.rs +++ b/src/lang/sv.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/template.rs b/src/lang/template.rs index 88abd2215..5558fce5c 100644 --- a/src/lang/template.rs +++ b/src/lang/template.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/th.rs b/src/lang/th.rs index 9bb86ba59..ce20015dd 100644 --- a/src/lang/th.rs +++ b/src/lang/th.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/tr.rs b/src/lang/tr.rs index c7ba5fceb..3471c51cc 100644 --- a/src/lang/tr.rs +++ b/src/lang/tr.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/tw.rs b/src/lang/tw.rs index 1253aee75..8aeb47d83 100644 --- a/src/lang/tw.rs +++ b/src/lang/tw.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", ""), ("accept_and_elevate_btn_tooltip", ""), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", "收到的連接"), - ("outgoing connection", "發起的連接"), + ("Incoming connection", "收到的連接"), + ("Outgoing connection", "發起的連接"), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/ua.rs b/src/lang/ua.rs index 8ba47e6c5..a5ab7e3de 100644 --- a/src/lang/ua.rs +++ b/src/lang/ua.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "Погодитись та розширити права"), ("accept_and_elevate_btn_tooltip", "Погодити підключення та розширити дозволи UAC."), ("clipboard_wait_response_timeout_tip", "Вийшов час очікування копіювання."), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); } diff --git a/src/lang/vn.rs b/src/lang/vn.rs index 3b6f5205f..6d8504eaf 100644 --- a/src/lang/vn.rs +++ b/src/lang/vn.rs @@ -513,7 +513,9 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> = ("Accept and Elevate", "Chấp nhận và Cấp Quyền"), ("accept_and_elevate_btn_tooltip", "Chấp nhận kết nối và cấp các quyền UAC."), ("clipboard_wait_response_timeout_tip", ""), - ("incomming connection", ""), - ("outgoing connection", ""), + ("Incoming connection", ""), + ("Outgoing connection", ""), + ("Exit", ""), + ("Open", ""), ].iter().cloned().collect(); }