desktop, remote toolbar, os account
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
parent
3fd1da05f4
commit
888c851167
@ -503,11 +503,6 @@ _connectDialog(
|
||||
}
|
||||
|
||||
submit() {
|
||||
// to-do:
|
||||
// username and password are about remote OS account.
|
||||
// If the remote side is headless.
|
||||
// The client side should login to remote OS account, to enable X desktop session.
|
||||
// `username` and `password` will be used in the near future.
|
||||
final osUsername = osUsernameController?.text.trim() ?? '';
|
||||
final osPassword = osPasswordController?.text.trim() ?? '';
|
||||
final password = passwordController?.text.trim() ?? '';
|
||||
@ -565,7 +560,7 @@ _connectDialog(
|
||||
}
|
||||
return Column(
|
||||
children: [
|
||||
descWidget(translate('login_linux_tooltip_tip')),
|
||||
descWidget(translate('login_linux_tip')),
|
||||
DialogTextField(
|
||||
title: translate(DialogTextField.kUsernameTitle),
|
||||
controller: osUsernameController,
|
||||
|
@ -225,20 +225,16 @@ class _ConnectionPageState extends State<ConnectionPage>
|
||||
children: [
|
||||
Button(
|
||||
isOutline: true,
|
||||
onTap: () {
|
||||
onConnect(isFileTransfer: true);
|
||||
},
|
||||
onTap: () => enterUserLoginAndPasswordDialog(
|
||||
'fdsfd',
|
||||
gFFI.dialogManager,
|
||||
),
|
||||
text: "Transfer File",
|
||||
),
|
||||
const SizedBox(
|
||||
width: 17,
|
||||
),
|
||||
Button(
|
||||
onTap: () => enterUserLoginAndPasswordDialog(
|
||||
'fdsfd',
|
||||
gFFI.dialogManager,
|
||||
),
|
||||
text: "Connect"),
|
||||
Button(onTap: onConnect, text: "Connect"),
|
||||
],
|
||||
),
|
||||
)
|
||||
|
@ -689,6 +689,26 @@ class _ControlMenu extends StatelessWidget {
|
||||
close();
|
||||
}
|
||||
|
||||
descWidget(String text) {
|
||||
return Column(
|
||||
children: [
|
||||
Align(
|
||||
alignment: Alignment.centerLeft,
|
||||
child: Text(
|
||||
text,
|
||||
maxLines: 3,
|
||||
softWrap: true,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
style: TextStyle(fontSize: 16),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
height: 8,
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
return CustomAlertDialog(
|
||||
title: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
@ -700,6 +720,7 @@ class _ControlMenu extends StatelessWidget {
|
||||
content: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
descWidget(translate("os_account_desk_tip")),
|
||||
DialogTextField(
|
||||
title: translate(DialogTextField.kUsernameTitle),
|
||||
controller: usernameController,
|
||||
|
@ -915,7 +915,7 @@ impl PeerConfig {
|
||||
decrypt_vec_or_original(&config.password, PASSWORD_ENC_VERSION);
|
||||
config.password = password;
|
||||
store = store || store2;
|
||||
for opt in ["rdp_password", "os-password"] {
|
||||
for opt in ["rdp_password", "os-username", "os-password"] {
|
||||
if let Some(v) = config.options.get_mut(opt) {
|
||||
let (encrypted, _, store2) = decrypt_str_or_original(v, PASSWORD_ENC_VERSION);
|
||||
*v = encrypted;
|
||||
@ -938,7 +938,7 @@ impl PeerConfig {
|
||||
let _lock = CONFIG.read().unwrap();
|
||||
let mut config = self.clone();
|
||||
config.password = encrypt_vec_or_original(&config.password, PASSWORD_ENC_VERSION);
|
||||
for opt in ["rdp_password", "os-password"] {
|
||||
for opt in ["rdp_password", "os-username", "os-password"] {
|
||||
if let Some(v) = config.options.get_mut(opt) {
|
||||
*v = encrypt_str_or_original(v, PASSWORD_ENC_VERSION)
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Tancar"),
|
||||
("Retry", "Reintentar"),
|
||||
("OK", ""),
|
||||
("remember_password_tip", "Es necessita la contrasenya"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Si us plau, introdueixi la seva contrasenya"),
|
||||
("Remember password", "Recordar contrasenya"),
|
||||
("Wrong Password", "Contrasenya incorrecta"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "关闭"),
|
||||
("Retry", "再试"),
|
||||
("OK", "确认"),
|
||||
("remember_password_tip", "需要密码"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "请输入密码"),
|
||||
("Remember password", "记住密码"),
|
||||
("Wrong Password", "密码错误"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "此文件与对方的一致"),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", "浏览模式"),
|
||||
("enter_rustdesk_passwd_tip", "请输入 RustDesk 密码"),
|
||||
("remember_rustdesk_passwd_tip", "记住 RustDesk 密码"),
|
||||
("login_linux_tip", "登录被控端的 Linux 账户"),
|
||||
("login_linux_tooltip_tip", "登录被控端的 Linux 账户,才能启用 X 桌面。"),
|
||||
("login_linux_tip", "登录被控端的 Linux 账户,才能启用 X 桌面"),
|
||||
("verify_rustdesk_password_tip", "验证 RustDesk 密码"),
|
||||
("remember_account_tip", "记住此账户"),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", "在无显示器的环境下,此账户用于登录被控系统,并启用桌面"),
|
||||
("OS Account", "系统账户"),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Zavřít"),
|
||||
("Retry", "Zkusit znovu"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Vyžadováno heslo"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Zadejte své heslo"),
|
||||
("Remember password", "Zapamatovat heslo"),
|
||||
("Wrong Password", "Nesprávné heslo"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Luk"),
|
||||
("Retry", "Prøv igen"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Adgangskode påkrævet"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Indtast venligst dit kodeord"),
|
||||
("Remember password", "Husk kodeord"),
|
||||
("Wrong Password", "Forkert kodeord"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Schließen"),
|
||||
("Retry", "Erneut versuchen"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Passwort erforderlich"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Bitte geben Sie Ihr Passwort ein"),
|
||||
("Remember password", "Passwort merken"),
|
||||
("Wrong Password", "Falsches Passwort"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "Diese Datei ist identisch mit der Datei der Gegenstelle."),
|
||||
("show_monitors_tip", "Monitore in der Symbolleiste anzeigen"),
|
||||
("View Mode", "Ansichtsmodus"),
|
||||
("enter_rustdesk_passwd_tip", "RustDesk-Passwort eingeben."),
|
||||
("remember_rustdesk_passwd_tip", "RustDesk-Passwort merken."),
|
||||
("login_linux_tip", "Anmeldung am entfernten Linux-Konto"),
|
||||
("login_linux_tooltip_tip", "Sie müssen sich an einem entfernten Linux-Konto anmelden, um eine X-Desktop-Sitzung zu eröffnen."),
|
||||
("login_linux_tip", "Sie müssen sich an einem entfernten Linux-Konto anmelden, um eine X-Desktop-Sitzung zu eröffnen."),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Κλείσιμο"),
|
||||
("Retry", "Δοκίμασε ξανά"),
|
||||
("OK", "ΟΚ"),
|
||||
("remember_password_tip", "Απαιτείται κωδικός πρόσβασης"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Παρακαλώ εισάγετε τον κωδικό πρόσβασης"),
|
||||
("Remember password", "Απομνημόνευση κωδικού πρόσβασης"),
|
||||
("Wrong Password", "Λάθος κωδικός πρόσβασης"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "Το αρχείο είναι πανομοιότυπο με αυτό του άλλου υπολογιστή."),
|
||||
("show_monitors_tip", "Εμφάνιση οθονών στη γραμμή εργαλείων"),
|
||||
("View Mode", "Λειτουργία προβολής"),
|
||||
("enter_rustdesk_passwd_tip", "Εισαγωγή του κωδικού RustDesk."),
|
||||
("remember_rustdesk_passwd_tip", "Να θυμάσαι τον κωδικό του RustDesk."),
|
||||
("login_linux_tip", "Είσοδος σε απομακρυσμένο λογαριασμό Linux"),
|
||||
("login_linux_tooltip_tip", "Απαιτείται είσοδος σε απομακρυσμένο λογαριασμό Linux για την ενεργοποίηση του περιβάλλον εργασίας Χ."),
|
||||
("login_linux_tip", "Απαιτείται είσοδος σε απομακρυσμένο λογαριασμό Linux για την ενεργοποίηση του περιβάλλον εργασίας Χ."),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -56,10 +56,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("show_monitors_tip", "Show monitors in toolbar."),
|
||||
("enter_rustdesk_passwd_tip", "Enter RustDesk password"),
|
||||
("remember_rustdesk_passwd_tip", "Remember RustDesk password"),
|
||||
("login_linux_tip", "Login to remote Linux account"),
|
||||
("login_linux_tooltip_tip", "You need to login to remote Linux account to enable a X desktop session"),
|
||||
("login_linux_tip", "You need to login to remote Linux account to enable a X desktop session"),
|
||||
("verify_rustdesk_password_tip", "Veryfy RustDesk password"),
|
||||
("remember_account_tip", "Remember this account"),
|
||||
("remember_password_tip", "Remember password"),
|
||||
("os_account_desk_tip", "This account is used to login the remote OS and enable the desktop session in headless"),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Fermi"),
|
||||
("Retry", "Reprovi"),
|
||||
("OK", "Konfermi"),
|
||||
("remember_password_tip", "Pasvorto deviga"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Bonvolu tajpi vian pasvorton"),
|
||||
("Remember password", "Memori pasvorton"),
|
||||
("Wrong Password", "Erara pasvorto"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Cerrar"),
|
||||
("Retry", "Reintentar"),
|
||||
("OK", ""),
|
||||
("remember_password_tip", "Se requiere contraseña"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Por favor, introduzca su contraseña"),
|
||||
("Remember password", "Recordar contraseña"),
|
||||
("Wrong Password", "Contraseña incorrecta"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "Este archivo es idéntico al del par."),
|
||||
("show_monitors_tip", "Mostrar monitores en la barra de herramientas"),
|
||||
("View Mode", "Modo Vista"),
|
||||
("enter_rustdesk_passwd_tip", "Introduzca la contraseña de RustDesk"),
|
||||
("remember_rustdesk_passwd_tip", "Recordar la contraseña de RustDesk"),
|
||||
("login_linux_tip", "Iniciar sesión para la cuenta remota de Linux"),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "بستن"),
|
||||
("Retry", "تلاش مجدد"),
|
||||
("OK", "قبول"),
|
||||
("remember_password_tip", "رمز عبور لازم است"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "رمز عبور خود را وارد کنید"),
|
||||
("Remember password", "رمز عبور را به خاطر بسپار"),
|
||||
("Wrong Password", "رمز عبور اشتباه است"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "این فایل با فایل همتا یکسان است."),
|
||||
("show_monitors_tip", "نمایش مانیتورها در نوار ابزار"),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Fermer"),
|
||||
("Retry", "Réessayer"),
|
||||
("OK", "Valider"),
|
||||
("remember_password_tip", "Mot de passe requis"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Veuillez saisir votre mot de passe"),
|
||||
("Remember password", "Mémoriser le mot de passe"),
|
||||
("Wrong Password", "Mauvais mot de passe"),
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Bezárás"),
|
||||
("Retry", "Újra"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Jelszó megadása kötelező"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Kérem írja be a jelszavát"),
|
||||
("Remember password", "Jelszó megjegyzése"),
|
||||
("Wrong Password", "Hibás jelszó"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Tutup"),
|
||||
("Retry", "Ulangi"),
|
||||
("OK", "Oke"),
|
||||
("remember_password_tip", "Kata sandi dibutuhkan"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Silahkan masukkan kata sandi anda"),
|
||||
("Remember password", "Ingat Password"),
|
||||
("Wrong Password", "Kata sandi Salah"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Chiudi"),
|
||||
("Retry", "Riprova"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Password Richiesta"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Inserisci la tua password"),
|
||||
("Remember password", "Ricorda password"),
|
||||
("Wrong Password", "Password Errata"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "Questo file è identico a quello del peer."),
|
||||
("show_monitors_tip", "Mostra schermi nella barra degli strumenti"),
|
||||
("View Mode", "Modalità di visualizzazione"),
|
||||
("enter_rustdesk_passwd_tip", "Inserisci la password di RustDesk."),
|
||||
("remember_rustdesk_passwd_tip", "Ricorda la passowrd di RustDesk."),
|
||||
("login_linux_tip", "Effettua l'accesso sul tuo account Linux"),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "閉じる"),
|
||||
("Retry", "再試行"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "パスワードが必要"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "パスワードを入力してください"),
|
||||
("Remember password", "パスワードを記憶する"),
|
||||
("Wrong Password", "パスワードが間違っています"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "닫기"),
|
||||
("Retry", "재시도"),
|
||||
("OK", "확인"),
|
||||
("remember_password_tip", "비밀번호 입력"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "비밀번호를 입력해주세요"),
|
||||
("Remember password", "이 비밀번호 기억하기"),
|
||||
("Wrong Password", "틀린 비밀번호"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Жабу"),
|
||||
("Retry", "Қайтадан көру"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Құпия сөз Қажет"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Құпия сөзіңізді еңгізуді өтінеміз"),
|
||||
("Remember password", "Құпия сөзді есте сақтау"),
|
||||
("Wrong Password", "Бұрыс Құпия сөз"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Sluit"),
|
||||
("Retry", "Probeer opnieuw"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Wachtwoord vereist"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Geef uw wachtwoord in"),
|
||||
("Remember password", "Wachtwoord onthouden"),
|
||||
("Wrong Password", "Verkeerd wachtwoord"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "Dit bestand is identiek aan het bestand van het externe station."),
|
||||
("show_monitors_tip", "Monitoren weergeven in de werkbalk"),
|
||||
("View Mode", "Weergave Mode"),
|
||||
("enter_rustdesk_passwd_tip", "Geef het RustDesk-wachtwoord op."),
|
||||
("remember_rustdesk_passwd_tip", "RustDesk Wachtwoord onthouden."),
|
||||
("login_linux_tip", "Je moet inloggen op een Linux Account op afstand om een X desktop sessie te openen."),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Zamknij"),
|
||||
("Retry", "Ponów"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Wymagane jest hasło"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Wpisz proszę twoje hasło"),
|
||||
("Remember password", "Zapamiętaj hasło"),
|
||||
("Wrong Password", "Błędne hasło"),
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Fechar"),
|
||||
("Retry", "Tentar novamente"),
|
||||
("OK", "Confirmar"),
|
||||
("remember_password_tip", "Palavra-chave Necessária"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Por favor introduza a sua palavra-chave"),
|
||||
("Remember password", "Memorizar palavra-chave"),
|
||||
("Wrong Password", "Palavra-chave inválida"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Fechar"),
|
||||
("Retry", "Tentar novamente"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Senha necessária"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Por favor informe sua senha"),
|
||||
("Remember password", "Lembrar senha"),
|
||||
("Wrong Password", "Senha incorreta"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Închide"),
|
||||
("Retry", "Reîncearcă"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Parolă necesară"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Introdu parola"),
|
||||
("Remember password", "Memorează parola"),
|
||||
("Wrong Password", "Parolă incorectă"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Закрыть"),
|
||||
("Retry", "Повторить"),
|
||||
("OK", "ОК"),
|
||||
("remember_password_tip", "Требуется пароль"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Введите пароль"),
|
||||
("Remember password", "Запомнить пароль"),
|
||||
("Wrong Password", "Неправильный пароль"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "Файл идентичен файлу на удалённом узле."),
|
||||
("show_monitors_tip", "Показывать мониторы на панели инструментов"),
|
||||
("View Mode", "Режим просмотра"),
|
||||
("enter_rustdesk_passwd_tip", "Введите пароль RustDesk"),
|
||||
("remember_rustdesk_passwd_tip", "Запомнить пароль RustDesk"),
|
||||
("login_linux_tip", "Вход в удалённый аккаунт Linux"),
|
||||
("login_linux_tooltip_tip", "Чтобы включить сеанс рабочего стола X, необходимо войти в удалённый аккаунт Linux."),
|
||||
("login_linux_tip", "Чтобы включить сеанс рабочего стола X, необходимо войти в удалённый аккаунт Linux."),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Zatvoriť"),
|
||||
("Retry", "Zopakovať"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Vyžaduje sa heslo"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Zadajte vaše heslo"),
|
||||
("Remember password", "Zapamätať heslo"),
|
||||
("Wrong Password", "Chybné heslo"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Zapri"),
|
||||
("Retry", "Ponovi"),
|
||||
("OK", "V redu"),
|
||||
("remember_password_tip", "Potrebno je geslo"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Vnesite vaše geslo"),
|
||||
("Remember password", "Zapomni si geslo"),
|
||||
("Wrong Password", "Napačno geslo"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Mbyll"),
|
||||
("Retry", "Riprovo"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Fjalëkalimi i detyrueshëm"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Ju lutem vendosni fjalëkalimin tuaj"),
|
||||
("Remember password", "Mbani mend fjalëkalimin"),
|
||||
("Wrong Password", "Fjalëkalim i gabuar"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Zatvori"),
|
||||
("Retry", "Ponovi"),
|
||||
("OK", "Ok"),
|
||||
("remember_password_tip", "Potrebna lozinka"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Molimo unesite svoju lozinku"),
|
||||
("Remember password", "Zapamti lozinku"),
|
||||
("Wrong Password", "Pogrešna lozinka"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Stäng"),
|
||||
("Retry", "Försök igen"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Lösenord krävs"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Skriv in ditt lösenord"),
|
||||
("Remember password", "Kom ihåg lösenord"),
|
||||
("Wrong Password", "Fel lösenord"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -480,11 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "ปิด"),
|
||||
("Retry", "ลองใหม่อีกครั้ง"),
|
||||
("OK", "ตกลง"),
|
||||
("remember_password_tip", "ต้องใช้รหัสผ่าน"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "กรุณาใส่รหัสผ่านของคุณ"),
|
||||
("Remember password", "จดจำรหัสผ่าน"),
|
||||
("Wrong Password", "รหัสผ่านไม่ถูกต้อง"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Kapat"),
|
||||
("Retry", "Tekrar Dene"),
|
||||
("OK", "Tamam"),
|
||||
("remember_password_tip", "Şifre Gerekli"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Lütfen şifrenizi giriniz"),
|
||||
("Remember password", "Şifreyi hatırla"),
|
||||
("Wrong Password", "Hatalı şifre"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "關閉"),
|
||||
("Retry", "重試"),
|
||||
("OK", "確定"),
|
||||
("remember_password_tip", "需要密碼"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "請輸入您的密碼"),
|
||||
("Remember password", "記住密碼"),
|
||||
("Wrong Password", "密碼錯誤"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", "此檔案與對方的檔案一致"),
|
||||
("show_monitors_tip", "在工具列中顯示顯示器"),
|
||||
("View Mode", "瀏覽模式"),
|
||||
("enter_rustdesk_passwd_tip", "輸入 RustDesk 密碼"),
|
||||
("remember_rustdesk_passwd_tip", "記住 RustDesk 密碼"),
|
||||
("login_linux_tip", "登入到遠端 Linux 使用者帳戶"),
|
||||
("login_linux_tooltip_tip", "需要登入到遠端 Linux 使用者帳戶才能啟用 X 介面。"),
|
||||
("login_linux_tip", "需要登入到遠端 Linux 使用者帳戶才能啟用 X 介面。"),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Закрити"),
|
||||
("Retry", "Спробувати знову"),
|
||||
("OK", "ОК"),
|
||||
("remember_password_tip", "Потрібен пароль"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Будь ласка, введіть ваш пароль"),
|
||||
("Remember password", "Запам'ятати пароль"),
|
||||
("Wrong Password", "Невірний пароль"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Close", "Đóng"),
|
||||
("Retry", "Thử lại"),
|
||||
("OK", "OK"),
|
||||
("remember_password_tip", "Yêu cầu mật khẩu"),
|
||||
("remember_password_tip", ""),
|
||||
("Please enter your password", "Mời nhập mật khẩu"),
|
||||
("Remember password", "Nhớ mật khẩu"),
|
||||
("Wrong Password", "Sai mật khẩu"),
|
||||
@ -480,12 +480,10 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("identical_file_tip", ""),
|
||||
("show_monitors_tip", ""),
|
||||
("View Mode", ""),
|
||||
("enter_rustdesk_passwd_tip", ""),
|
||||
("remember_rustdesk_passwd_tip", ""),
|
||||
("login_linux_tip", ""),
|
||||
("login_linux_tooltip_tip", ""),
|
||||
("verify_rustdesk_password_tip", ""),
|
||||
("remember_account_tip", ""),
|
||||
("remember_password_tip", ""),
|
||||
("os_account_desk_tip", ""),
|
||||
("OS Account", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user