fix: non-E2EE show dialog (#15514)

* fix: non-E2EE show dialog

Signed-off-by: fufesou <linlong1266@gmail.com>

* fix: build web, bridge

Signed-off-by: fufesou <linlong1266@gmail.com>

* fix: direct IP access, do not snow non-E2EE dialog

Signed-off-by: fufesou <linlong1266@gmail.com>

* fix: non E2EE dialog, update contents

Signed-off-by: fufesou <linlong1266@gmail.com>

* fix: non-E2EE, show dialog, port forward

Signed-off-by: fufesou <linlong1266@gmail.com>

* fix: non-E2EE dialog, port forward, ignore direct IP access

Signed-off-by: fufesou <linlong1266@gmail.com>

* fix: non-E2EE is_direct_ip_access()

Signed-off-by: fufesou <linlong1266@gmail.com>

* Simple refactor

Signed-off-by: fufesou <linlong1266@gmail.com>

* fix: non-E2EE dialog, port forward, close socket on disconnect

Signed-off-by: fufesou <linlong1266@gmail.com>

* fix: non-E2EE dialog, incorrect reuse of Data::Close

Signed-off-by: fufesou <linlong1266@gmail.com>

---------

Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
fufesou
2026-07-06 17:05:11 +08:00
committed by GitHub
parent 37141afece
commit 28930c0463
63 changed files with 254 additions and 10 deletions

View File

@@ -1185,6 +1185,48 @@ void msgBox(SessionID sessionId, String type, String title, String text,
VoidCallback? onSubmit, VoidCallback? onSubmit,
int? submitTimeout}) { int? submitTimeout}) {
dialogManager.dismissAll(); dialogManager.dismissAll();
if (type.contains('insecure-connection')) {
Future<void> closeSession() async {
await bind.sessionSetCommon(
sessionId: sessionId,
key: 'continue-insecure-connection',
value: 'N',
);
dialogManager.dismissAll();
closeConnection();
}
void continueSession() {
unawaited(
bind.sessionSetCommon(
sessionId: sessionId,
key: 'continue-insecure-connection',
value: 'Y',
),
);
dialogManager.dismissAll();
}
dialogManager.show(
(setState, close, context) => CustomAlertDialog(
title: null,
content: SelectionArea(child: msgboxContent(type, title, text)),
actions: [
dialogButton(
'Continue',
onPressed: continueSession,
isOutline: true,
),
dialogButton('Disconnect', onPressed: closeSession),
],
onSubmit: closeSession,
onCancel: closeSession,
),
tag: '$sessionId-$type-$title-$text-$link',
);
return;
}
List<Widget> buttons = []; List<Widget> buttons = [];
bool hasOk = false; bool hasOk = false;
submit() { submit() {

View File

@@ -1914,6 +1914,15 @@ class RustdeskImpl {
throw UnimplementedError("sessionHandleScreenshot"); throw UnimplementedError("sessionHandleScreenshot");
} }
Future<void> sessionSetCommon(
{required UuidValue sessionId, required String key, required String value, dynamic hint}) {
js.context.callMethod('setByName', [
'common',
jsonEncode({'name': key, 'value': value})
]);
return Future.value();
}
String? sessionGetCommonSync( String? sessionGetCommonSync(
{required UuidValue sessionId, {required UuidValue sessionId,
required String key, required String key,

View File

@@ -3792,6 +3792,7 @@ pub trait Interface: Send + Clone + 'static + Sized {
#[derive(Clone)] #[derive(Clone)]
pub enum Data { pub enum Data {
Close, Close,
RejectInsecureConnection,
Login((String, String, String, bool)), Login((String, String, String, bool)),
Message(Message), Message(Message),
SendFiles((i32, JobType, String, String, i32, bool, bool)), SendFiles((i32, JobType, String, String, i32, bool, bool)),
@@ -3815,11 +3816,33 @@ pub enum Data {
ElevateWithLogon(String, String), ElevateWithLogon(String, String),
NewVoiceCall, NewVoiceCall,
CloseVoiceCall, CloseVoiceCall,
ContinueInsecureConnection,
ResetDecoder(Option<usize>), ResetDecoder(Option<usize>),
RenameFile((i32, String, String, bool)), RenameFile((i32, String, String, bool)),
TakeScreenshot((i32, String)), TakeScreenshot((i32, String)),
} }
pub async fn confirm_insecure_connection(
interface: &impl Interface,
receiver: &mut UnboundedReceiver<Data>,
) -> bool {
interface.msgbox(
"insecure-connection-nocancel-hasclose",
"Insecure Connection",
"conn-e2ee-unavailable-tip",
"",
);
while let Some(data) = receiver.recv().await {
match data {
Data::ContinueInsecureConnection => return true,
Data::RejectInsecureConnection => return false,
Data::Close => return false,
_ => {}
}
}
false
}
/// Keycode for key events. /// Keycode for key events.
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub enum Key { pub enum Key {

View File

@@ -14,6 +14,7 @@ use crate::{
// Empirical no-data window before exposing the restart reconnect state to the UI. // Empirical no-data window before exposing the restart reconnect state to the UI.
// Restart msgbox text is kept as a legacy UI fallback; Flutter handles the type as a control event. // Restart msgbox text is kept as a legacy UI fallback; Flutter handles the type as a control event.
const RESTART_REMOTE_DEVICE_NO_DATA_TIMEOUT: Duration = Duration::from_secs(5); const RESTART_REMOTE_DEVICE_NO_DATA_TIMEOUT: Duration = Duration::from_secs(5);
const KCP_CLOSE_REASON_FLUSH_DELAY: Duration = Duration::from_millis(30);
#[cfg(feature = "unix-file-copy-paste")] #[cfg(feature = "unix-file-copy-paste")]
use crate::{clipboard::try_empty_clipboard_files, clipboard_file::unix_file_clip}; use crate::{clipboard::try_empty_clipboard_files, clipboard_file::unix_file_clip};
#[cfg(any( #[cfg(any(
@@ -183,8 +184,20 @@ impl<T: InvokeUiSession> Remote<T> {
.lock() .lock()
.unwrap() .unwrap()
.set_connected(); .set_connected();
let is_secured = peer.is_secured();
self.handler self.handler
.set_connection_type(peer.is_secured(), direct, stream_type); // flutter -> connection_ready .set_connection_type(is_secured, direct, stream_type); // flutter -> connection_ready
if !is_secured
&& !crate::common::is_direct_ip_access(&self.handler.get_id())
&& !client::confirm_insecure_connection(&self.handler, &mut self.receiver).await
{
self.send_close_reason(&mut peer, "").await;
if kcp.is_some() {
tokio::time::sleep(KCP_CLOSE_REASON_FLUSH_DELAY).await;
}
self.handle_disconnected(round);
return;
}
self.handler.update_direct(Some(direct)); self.handler.update_direct(Some(direct));
if conn_type == ConnType::DEFAULT_CONN || conn_type == ConnType::VIEW_CAMERA { if conn_type == ConnType::DEFAULT_CONN || conn_type == ConnType::VIEW_CAMERA {
self.handler self.handler
@@ -338,13 +351,17 @@ impl<T: InvokeUiSession> Remote<T> {
self.send_close_reason(&mut peer, "kcp").await; self.send_close_reason(&mut peer, "kcp").await;
// KCP does not send messages immediately, so wait to ensure the last message is sent. // KCP does not send messages immediately, so wait to ensure the last message is sent.
// 1ms works in my test, but 30ms is more reliable. // 1ms works in my test, but 30ms is more reliable.
tokio::time::sleep(Duration::from_millis(30)).await; tokio::time::sleep(KCP_CLOSE_REASON_FLUSH_DELAY).await;
} }
} }
Err(err) => { Err(err) => {
self.handler.on_establish_connection_error(err.to_string()); self.handler.on_establish_connection_error(err.to_string());
} }
} }
self.handle_disconnected(round);
}
fn handle_disconnected(&self, round: u32) {
// set_disconnected_ok is used to check if new connection round is started. // set_disconnected_ok is used to check if new connection round is started.
let _set_disconnected_ok = self let _set_disconnected_ok = self
.handler .handler

View File

@@ -2619,6 +2619,10 @@ pub fn get_control_permission(
} }
} }
pub fn is_direct_ip_access(peer: &str) -> bool {
hbb_common::is_ip_str(peer) || hbb_common::is_domain_port_str(peer)
}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; use super::*;

View File

@@ -3028,6 +3028,16 @@ pub fn main_set_common(_key: String, _value: String) {
} }
} }
pub fn session_set_common(session_id: SessionID, key: String, value: String) {
if let Some(s) = sessions::get_session_by_session_id(&session_id) {
if key == "continue-insecure-connection"
{
s.continue_insecure_connection(value == "Y");
return;
}
}
}
pub fn session_get_common_sync( pub fn session_get_common_sync(
session_id: SessionID, session_id: SessionID,
key: String, key: String,

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "اتصال الوسيط"), ("Relay Connection", "اتصال الوسيط"),
("Secure Connection", "اتصال آمن"), ("Secure Connection", "اتصال آمن"),
("Insecure Connection", "اتصال غير آمن"), ("Insecure Connection", "اتصال غير آمن"),
("Continue", ""),
("Scale original", "المقياس الأصلي"), ("Scale original", "المقياس الأصلي"),
("Scale adaptive", "مقياس التكيف"), ("Scale adaptive", "مقياس التكيف"),
("General", "عام"), ("General", "عام"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "الإظهار على شريط الأدوات المُصغّر"), ("Show on the minimized toolbar", "الإظهار على شريط الأدوات المُصغّر"),
("All monitors", "جميع الشاشات"), ("All monitors", "جميع الشاشات"),
("#{} monitor", "الشاشة رقم {}"), ("#{} monitor", "الشاشة رقم {}"),
("conn-e2ee-unavailable-tip", "تعذر التحقق من التشفير من طرف إلى طرف.\nقد يكون الجهاز البعيد ما يزال قيد الإعداد. حاول مرة أخرى لاحقًا.\nإذا استمر حدوث ذلك، فقد يكون الخادم غير موثوق به.\nهل تريد المتابعة على أي حال؟"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Рэтрансляванае падключэнне"), ("Relay Connection", "Рэтрансляванае падключэнне"),
("Secure Connection", "Бяспечнае падключэнне"), ("Secure Connection", "Бяспечнае падключэнне"),
("Insecure Connection", "Нябяспечнае падключэнне"), ("Insecure Connection", "Нябяспечнае падключэнне"),
("Continue", ""),
("Scale original", "Арыгінальны маштаб"), ("Scale original", "Арыгінальны маштаб"),
("Scale adaptive", "Адаптыўны маштаб"), ("Scale adaptive", "Адаптыўны маштаб"),
("General", "Агульныя"), ("General", "Агульныя"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Паказваць на згорнутай панэлі інструментаў"), ("Show on the minimized toolbar", "Паказваць на згорнутай панэлі інструментаў"),
("All monitors", "Усе манітори"), ("All monitors", "Усе манітори"),
("#{} monitor", "Манітор {}"), ("#{} monitor", "Манітор {}"),
("conn-e2ee-unavailable-tip", "Не ўдалося праверыць скразное шыфраванне.\nАддаленая прылада, магчыма, яшчэ наладжваецца. Паспрабуйце пазней.\nКалі гэта будзе паўтарацца, сервер можа быць ненадзейным.\nУсё роўна працягнуць?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Релейна връзка"), ("Relay Connection", "Релейна връзка"),
("Secure Connection", "Сигурна връзка"), ("Secure Connection", "Сигурна връзка"),
("Insecure Connection", "Несигурна връзка"), ("Insecure Connection", "Несигурна връзка"),
("Continue", ""),
("Scale original", "Оригинален мащаб"), ("Scale original", "Оригинален мащаб"),
("Scale adaptive", "Приспособимо мащабиране"), ("Scale adaptive", "Приспособимо мащабиране"),
("General", "Основен"), ("General", "Основен"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Показване в минимизираната лента с инструменти"), ("Show on the minimized toolbar", "Показване в минимизираната лента с инструменти"),
("All monitors", "Всички монитори"), ("All monitors", "Всички монитори"),
("#{} monitor", "Монитор {}"), ("#{} monitor", "Монитор {}"),
("conn-e2ee-unavailable-tip", "Шифроването от край до край не може да бъде проверено.\nОтдалеченото устройство може все още да се настройва. Опитайте отново по-късно.\nАко това продължи, сървърът може да не е надежден.\nДа се продължи ли въпреки това?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Connexió amb repetidor"), ("Relay Connection", "Connexió amb repetidor"),
("Secure Connection", "Connexió segura"), ("Secure Connection", "Connexió segura"),
("Insecure Connection", "Connexió no segura"), ("Insecure Connection", "Connexió no segura"),
("Continue", ""),
("Scale original", "Escala original"), ("Scale original", "Escala original"),
("Scale adaptive", "Escala adaptativa"), ("Scale adaptive", "Escala adaptativa"),
("General", "General"), ("General", "General"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Mostra a la barra deines minimitzada"), ("Show on the minimized toolbar", "Mostra a la barra deines minimitzada"),
("All monitors", "Tots els monitors"), ("All monitors", "Tots els monitors"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "No s'ha pogut verificar el xifratge d'extrem a extrem.\nEl dispositiu remot encara es pot estar configurant. Torneu-ho a provar més tard.\nSi això continua passant, el servidor pot no ser de confiança.\nVoleu continuar igualment?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "中继连接"), ("Relay Connection", "中继连接"),
("Secure Connection", "安全连接"), ("Secure Connection", "安全连接"),
("Insecure Connection", "非安全连接"), ("Insecure Connection", "非安全连接"),
("Continue", ""),
("Scale original", "原始尺寸"), ("Scale original", "原始尺寸"),
("Scale adaptive", "适应窗口"), ("Scale adaptive", "适应窗口"),
("General", "常规"), ("General", "常规"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "在最小化工具栏上显示"), ("Show on the minimized toolbar", "在最小化工具栏上显示"),
("All monitors", "所有显示器"), ("All monitors", "所有显示器"),
("#{} monitor", "{}号显示器"), ("#{} monitor", "{}号显示器"),
("conn-e2ee-unavailable-tip", "无法验证端到端加密。\n远程设备可能仍在准备中,请稍后重试。\n如果此问题持续出现,服务器可能不受信任。\n仍要继续吗?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Připojení předávací server"), ("Relay Connection", "Připojení předávací server"),
("Secure Connection", "Zabezpečené připojení"), ("Secure Connection", "Zabezpečené připojení"),
("Insecure Connection", "Nezabezpečené připojení"), ("Insecure Connection", "Nezabezpečené připojení"),
("Continue", ""),
("Scale original", "Originální měřítko"), ("Scale original", "Originální měřítko"),
("Scale adaptive", "Adaptivní měřítko"), ("Scale adaptive", "Adaptivní měřítko"),
("General", "Obecné"), ("General", "Obecné"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Zobrazit na minimalizovaném panelu nástrojů"), ("Show on the minimized toolbar", "Zobrazit na minimalizovaném panelu nástrojů"),
("All monitors", "Všechny monitory"), ("All monitors", "Všechny monitory"),
("#{} monitor", "Monitor č. {}"), ("#{} monitor", "Monitor č. {}"),
("conn-e2ee-unavailable-tip", "Nepodařilo se ověřit koncové šifrování.\nVzdálené zařízení se možná stále nastavuje. Zkuste to znovu později.\nPokud se to bude opakovat, server nemusí být důvěryhodný.\nPřesto pokračovat?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Viderestillingsforbindelse"), ("Relay Connection", "Viderestillingsforbindelse"),
("Secure Connection", "Sikker forbindelse"), ("Secure Connection", "Sikker forbindelse"),
("Insecure Connection", "Usikker forbindelse"), ("Insecure Connection", "Usikker forbindelse"),
("Continue", ""),
("Scale original", "Original skalering"), ("Scale original", "Original skalering"),
("Scale adaptive", "Adaptiv skalering"), ("Scale adaptive", "Adaptiv skalering"),
("General", "Generelt"), ("General", "Generelt"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Vis på den minimerede værktøjslinje"), ("Show on the minimized toolbar", "Vis på den minimerede værktøjslinje"),
("All monitors", "Alle skærme"), ("All monitors", "Alle skærme"),
("#{} monitor", "Skærm {}"), ("#{} monitor", "Skærm {}"),
("conn-e2ee-unavailable-tip", "End-to-end-kryptering kunne ikke bekræftes.\nDen eksterne enhed er muligvis stadig ved at blive konfigureret. Prøv igen senere.\nHvis dette fortsætter, er serveren muligvis ikke pålidelig.\nFortsæt alligevel?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Relay-Verbindung"), ("Relay Connection", "Relay-Verbindung"),
("Secure Connection", "Sichere Verbindung"), ("Secure Connection", "Sichere Verbindung"),
("Insecure Connection", "Unsichere Verbindung"), ("Insecure Connection", "Unsichere Verbindung"),
("Continue", ""),
("Scale original", "Keine Skalierung"), ("Scale original", "Keine Skalierung"),
("Scale adaptive", "Anpassbare Skalierung"), ("Scale adaptive", "Anpassbare Skalierung"),
("General", "Allgemein"), ("General", "Allgemein"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "In der minimierten Symbolleiste anzeigen"), ("Show on the minimized toolbar", "In der minimierten Symbolleiste anzeigen"),
("All monitors", "Alle Bildschirme"), ("All monitors", "Alle Bildschirme"),
("#{} monitor", "Bildschirm {}"), ("#{} monitor", "Bildschirm {}"),
("conn-e2ee-unavailable-tip", "Ende-zu-Ende-Verschlüsselung konnte nicht verifiziert werden.\nDas entfernte Gerät wird möglicherweise noch eingerichtet. Versuchen Sie es später erneut.\nWenn dies weiterhin auftritt, ist der Server möglicherweise nicht vertrauenswürdig.\nTrotzdem fortfahren?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Αναμεταδιδόμενη σύνδεση"), ("Relay Connection", "Αναμεταδιδόμενη σύνδεση"),
("Secure Connection", "Ασφαλής σύνδεση"), ("Secure Connection", "Ασφαλής σύνδεση"),
("Insecure Connection", "Μη ασφαλής σύνδεση"), ("Insecure Connection", "Μη ασφαλής σύνδεση"),
("Continue", ""),
("Scale original", "Κλιμάκωση πρωτότυπου"), ("Scale original", "Κλιμάκωση πρωτότυπου"),
("Scale adaptive", "Προσαρμοσμένη κλίμακα"), ("Scale adaptive", "Προσαρμοσμένη κλίμακα"),
("General", "Γενικά"), ("General", "Γενικά"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Εμφάνιση στην ελαχιστοποιημένη γραμμή εργαλείων"), ("Show on the minimized toolbar", "Εμφάνιση στην ελαχιστοποιημένη γραμμή εργαλείων"),
("All monitors", "Όλες οι οθόνες"), ("All monitors", "Όλες οι οθόνες"),
("#{} monitor", "Οθόνη {}"), ("#{} monitor", "Οθόνη {}"),
("conn-e2ee-unavailable-tip", "Δεν ήταν δυνατή η επαλήθευση της κρυπτογράφησης από άκρο σε άκρο.\nΗ απομακρυσμένη συσκευή μπορεί να ρυθμίζεται ακόμα. Δοκιμάστε ξανά αργότερα.\nΑν αυτό συνεχιστεί, ο διακομιστής μπορεί να μην είναι αξιόπιστος.\nΣυνέχεια παρ' όλα αυτά;"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -279,5 +279,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("wayland-soft-keyboard-input-label", "Soft keyboard input"), ("wayland-soft-keyboard-input-label", "Soft keyboard input"),
("wayland-keyboard-input-reset-choice-tip", "Reset keyboard input choice"), ("wayland-keyboard-input-reset-choice-tip", "Reset keyboard input choice"),
("remember-wayland-keyboard-choice-tip", "Don't ask again for this remote computer"), ("remember-wayland-keyboard-choice-tip", "Don't ask again for this remote computer"),
("conn-e2ee-unavailable-tip", "Could not verify end-to-end encryption.\nThe remote device may still be setting up. Try again later.\nIf this keeps happening, the server may be untrusted.\nContinue anyway?")
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Relajsa Konekto"), ("Relay Connection", "Relajsa Konekto"),
("Secure Connection", "Sekura Konekto"), ("Secure Connection", "Sekura Konekto"),
("Insecure Connection", "Nesekura Konekto"), ("Insecure Connection", "Nesekura Konekto"),
("Continue", ""),
("Scale original", "Skalo originalo"), ("Scale original", "Skalo originalo"),
("Scale adaptive", "Skalo adapta"), ("Scale adaptive", "Skalo adapta"),
("General", "Ĝenerala"), ("General", "Ĝenerala"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Montri en la minimumigita ilobreto"), ("Show on the minimized toolbar", "Montri en la minimumigita ilobreto"),
("All monitors", "Ĉiuj monitoroj"), ("All monitors", "Ĉiuj monitoroj"),
("#{} monitor", "Monitoro {}"), ("#{} monitor", "Monitoro {}"),
("conn-e2ee-unavailable-tip", "Ne eblis kontroli la fin-al-finan ĉifradon.\nLa fora aparato eble ankoraŭ estas agordata. Provu denove poste.\nSe tio daŭre okazas, la servilo eble estas nefidinda.\nĈu daŭrigi tamen?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Conexión Relay"), ("Relay Connection", "Conexión Relay"),
("Secure Connection", "Conexión segura"), ("Secure Connection", "Conexión segura"),
("Insecure Connection", "Conexión insegura"), ("Insecure Connection", "Conexión insegura"),
("Continue", ""),
("Scale original", "Escala original"), ("Scale original", "Escala original"),
("Scale adaptive", "Escala adaptativa"), ("Scale adaptive", "Escala adaptativa"),
("General", "General"), ("General", "General"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Mostrar en la barra de herramientas minimizada"), ("Show on the minimized toolbar", "Mostrar en la barra de herramientas minimizada"),
("All monitors", "Todos los monitores"), ("All monitors", "Todos los monitores"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "No se pudo verificar el cifrado de extremo a extremo.\nEs posible que el dispositivo remoto aún se esté configurando. Inténtelo de nuevo más tarde.\nSi esto sigue ocurriendo, es posible que el servidor no sea de confianza.\n¿Continuar de todos modos?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Releeühendus"), ("Relay Connection", "Releeühendus"),
("Secure Connection", "Turvaline ühendus"), ("Secure Connection", "Turvaline ühendus"),
("Insecure Connection", "Ebaturvaline ühendus"), ("Insecure Connection", "Ebaturvaline ühendus"),
("Continue", ""),
("Scale original", "Originaalskaala"), ("Scale original", "Originaalskaala"),
("Scale adaptive", "Kohanduv skaala"), ("Scale adaptive", "Kohanduv skaala"),
("General", "Üldine"), ("General", "Üldine"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Näita minimeeritud tööriistaribal"), ("Show on the minimized toolbar", "Näita minimeeritud tööriistaribal"),
("All monitors", "Kõik kuvarid"), ("All monitors", "Kõik kuvarid"),
("#{} monitor", "Kuvar {}"), ("#{} monitor", "Kuvar {}"),
("conn-e2ee-unavailable-tip", "Otspunktkrüptimist ei saanud kontrollida.\nKaugseade võib olla veel seadistamisel. Proovige hiljem uuesti.\nKui see jätkub, ei pruugi server olla usaldusväärne.\nKas jätkata siiski?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Konexio igorria"), ("Relay Connection", "Konexio igorria"),
("Secure Connection", "Konexio segurua"), ("Secure Connection", "Konexio segurua"),
("Insecure Connection", "Konexio ez-segurua"), ("Insecure Connection", "Konexio ez-segurua"),
("Continue", ""),
("Scale original", "Jatorrizko eskala"), ("Scale original", "Jatorrizko eskala"),
("Scale adaptive", "Eskala moldagarria"), ("Scale adaptive", "Eskala moldagarria"),
("General", "Orokorra"), ("General", "Orokorra"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Erakutsi minimizatutako tresna-barran"), ("Show on the minimized toolbar", "Erakutsi minimizatutako tresna-barran"),
("All monitors", "Monitore guztiak"), ("All monitors", "Monitore guztiak"),
("#{} monitor", "{}. monitorea"), ("#{} monitor", "{}. monitorea"),
("conn-e2ee-unavailable-tip", "Ezin izan da muturretik muturrerako enkriptatzea egiaztatu.\nUrruneko gailua oraindik konfiguratzen ari daiteke. Saiatu berriro geroago.\nHonek jarraitzen badu, zerbitzaria fidagaitza izan daiteke.\nHala ere jarraitu?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Relay ارتباط"), ("Relay Connection", "Relay ارتباط"),
("Secure Connection", "ارتباط امن"), ("Secure Connection", "ارتباط امن"),
("Insecure Connection", "ارتباط غیر امن"), ("Insecure Connection", "ارتباط غیر امن"),
("Continue", ""),
("Scale original", "مقیاس اصلی"), ("Scale original", "مقیاس اصلی"),
("Scale adaptive", "مقیاس تطبیقی"), ("Scale adaptive", "مقیاس تطبیقی"),
("General", "عمومی"), ("General", "عمومی"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "نمایش در نوار ابزار کوچک‌شده"), ("Show on the minimized toolbar", "نمایش در نوار ابزار کوچک‌شده"),
("All monitors", "همه نمایشگرها"), ("All monitors", "همه نمایشگرها"),
("#{} monitor", "نمایشگر {}"), ("#{} monitor", "نمایشگر {}"),
("conn-e2ee-unavailable-tip", "رمزنگاری سرتاسری قابل تأیید نیست.\nدستگاه راه دور ممکن است هنوز در حال آماده‌سازی باشد. بعداً دوباره تلاش کنید.\nاگر این مشکل ادامه داشت، سرور ممکن است نامطمئن باشد.\nبا این حال ادامه می‌دهید؟"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Välitetty yhteys"), ("Relay Connection", "Välitetty yhteys"),
("Secure Connection", "Suojattu yhteys"), ("Secure Connection", "Suojattu yhteys"),
("Insecure Connection", "Suojaamaton yhteys"), ("Insecure Connection", "Suojaamaton yhteys"),
("Continue", ""),
("Scale original", "Skaalaa alkuperäinen"), ("Scale original", "Skaalaa alkuperäinen"),
("Scale adaptive", "Mukautuva skaalaus"), ("Scale adaptive", "Mukautuva skaalaus"),
("General", "Yleiset"), ("General", "Yleiset"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Näytä pienennetyssä työkalurivissä"), ("Show on the minimized toolbar", "Näytä pienennetyssä työkalurivissä"),
("All monitors", "Kaikki näytöt"), ("All monitors", "Kaikki näytöt"),
("#{} monitor", "Näyttö {}"), ("#{} monitor", "Näyttö {}"),
("conn-e2ee-unavailable-tip", "Päästä päähän -salausta ei voitu vahvistaa.\nEtälaite voi olla vielä määritettävänä. Yritä myöhemmin uudelleen.\nJos tämä jatkuu, palvelin ei ehkä ole luotettava.\nJatketaanko silti?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Connexion via relais"), ("Relay Connection", "Connexion via relais"),
("Secure Connection", "Connexion sécurisée"), ("Secure Connection", "Connexion sécurisée"),
("Insecure Connection", "Connexion non sécurisée"), ("Insecure Connection", "Connexion non sécurisée"),
("Continue", ""),
("Scale original", "Échelle originale"), ("Scale original", "Échelle originale"),
("Scale adaptive", "Échelle adaptative"), ("Scale adaptive", "Échelle adaptative"),
("General", "Général"), ("General", "Général"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Afficher dans la barre doutils réduite"), ("Show on the minimized toolbar", "Afficher dans la barre doutils réduite"),
("All monitors", "Tous les moniteurs"), ("All monitors", "Tous les moniteurs"),
("#{} monitor", "Moniteur {}"), ("#{} monitor", "Moniteur {}"),
("conn-e2ee-unavailable-tip", "Impossible de vérifier le chiffrement de bout en bout.\nL'appareil distant est peut-être encore en cours de configuration. Réessayez plus tard.\nSi le problème persiste, le serveur n'est peut-être pas fiable.\nContinuer quand même ?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "რეტრანსლირებული კავშირი"), ("Relay Connection", "რეტრანსლირებული კავშირი"),
("Secure Connection", "უსაფრთხო კავშირი"), ("Secure Connection", "უსაფრთხო კავშირი"),
("Insecure Connection", "არაუსაფრთხო კავშირი"), ("Insecure Connection", "არაუსაფრთხო კავშირი"),
("Continue", ""),
("Scale original", "ორიგინალური მასშტაბი"), ("Scale original", "ორიგინალური მასშტაბი"),
("Scale adaptive", "ადაპტირებადი მასშტაბი"), ("Scale adaptive", "ადაპტირებადი მასშტაბი"),
("General", "ზოგადი"), ("General", "ზოგადი"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "ჩვენება ჩაკეცილ ხელსაწყოთა ზოლზე"), ("Show on the minimized toolbar", "ჩვენება ჩაკეცილ ხელსაწყოთა ზოლზე"),
("All monitors", "ყველა მონიტორი"), ("All monitors", "ყველა მონიტორი"),
("#{} monitor", "მონიტორი {}"), ("#{} monitor", "მონიტორი {}"),
("conn-e2ee-unavailable-tip", "ბოლომდე დაშიფვრის გადამოწმება ვერ მოხერხდა.\nდისტანციური მოწყობილობა შესაძლოა ჯერ კიდევ მზადდება. სცადეთ მოგვიანებით.\nთუ ეს კვლავ გაგრძელდება, სერვერი შესაძლოა არასანდო იყოს.\nმაინც გააგრძელებთ?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "રિલે કનેક્શન"), ("Relay Connection", "રિલે કનેક્શન"),
("Secure Connection", "સુરક્ષિત કનેક્શન"), ("Secure Connection", "સુરક્ષિત કનેક્શન"),
("Insecure Connection", "અસુરક્ષિત કનેક્શન"), ("Insecure Connection", "અસુરક્ષિત કનેક્શન"),
("Continue", ""),
("Scale original", "મૂળ સ્કેલ"), ("Scale original", "મૂળ સ્કેલ"),
("Scale adaptive", "એડેપ્ટિવ સ્કેલ"), ("Scale adaptive", "એડેપ્ટિવ સ્કેલ"),
("General", "સામાન્ય"), ("General", "સામાન્ય"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "ન્યૂનતમ કરેલા ટૂલબાર પર બતાવો"), ("Show on the minimized toolbar", "ન્યૂનતમ કરેલા ટૂલબાર પર બતાવો"),
("All monitors", "બધા મોનિટર"), ("All monitors", "બધા મોનિટર"),
("#{} monitor", "મોનિટર {}"), ("#{} monitor", "મોનિટર {}"),
("conn-e2ee-unavailable-tip", "એન્ડ-ટુ-એન્ડ એન્ક્રિપ્શન ચકાસી શકાયું નથી.\nરિમોટ ઉપકરણ હજી સેટ થઈ રહ્યું હોઈ શકે છે. પછીથી ફરી પ્રયાસ કરો.\nજો આ ચાલુ રહે, તો સર્વર અવિશ્વસનીય હોઈ શકે છે.\nશું તેમ છતાં ચાલુ રાખવું?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "חיבור באמצעות ממסר"), ("Relay Connection", "חיבור באמצעות ממסר"),
("Secure Connection", "חיבור מאובטח"), ("Secure Connection", "חיבור מאובטח"),
("Insecure Connection", "חיבור לא מאובטח"), ("Insecure Connection", "חיבור לא מאובטח"),
("Continue", ""),
("Scale original", "קנה מידה מקורי"), ("Scale original", "קנה מידה מקורי"),
("Scale adaptive", "קנה מידה מותאם"), ("Scale adaptive", "קנה מידה מותאם"),
("General", "כללי"), ("General", "כללי"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "הצגה בסרגל הכלים הממוזער"), ("Show on the minimized toolbar", "הצגה בסרגל הכלים הממוזער"),
("All monitors", "כל המסכים"), ("All monitors", "כל המסכים"),
("#{} monitor", "מסך {}"), ("#{} monitor", "מסך {}"),
("conn-e2ee-unavailable-tip", "לא ניתן לאמת הצפנה מקצה לקצה.\nייתכן שהמכשיר המרוחק עדיין בתהליך הגדרה. נסה שוב מאוחר יותר.\nאם זה ממשיך לקרות, ייתכן שהשרת אינו מהימן.\nלהמשיך בכל זאת?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "रिले कनेक्शन"), ("Relay Connection", "रिले कनेक्शन"),
("Secure Connection", "सुरक्षित कनेक्शन"), ("Secure Connection", "सुरक्षित कनेक्शन"),
("Insecure Connection", "असुरक्षित कनेक्शन"), ("Insecure Connection", "असुरक्षित कनेक्शन"),
("Continue", ""),
("Scale original", "मूल पैमाना"), ("Scale original", "मूल पैमाना"),
("Scale adaptive", "अनुकूली पैमाना"), ("Scale adaptive", "अनुकूली पैमाना"),
("General", "सामान्य"), ("General", "सामान्य"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "न्यूनतम किए गए टूलबार पर दिखाएं"), ("Show on the minimized toolbar", "न्यूनतम किए गए टूलबार पर दिखाएं"),
("All monitors", "सभी मॉनिटर"), ("All monitors", "सभी मॉनिटर"),
("#{} monitor", "मॉनिटर {}"), ("#{} monitor", "मॉनिटर {}"),
("conn-e2ee-unavailable-tip", "एंड-टू-एंड एन्क्रिप्शन सत्यापित नहीं किया जा सका।\nदूरस्थ डिवाइस अभी भी सेट अप हो रहा हो सकता है। बाद में फिर प्रयास करें।\nयदि यह समस्या बनी रहती है, तो सर्वर अविश्वसनीय हो सकता है।\nफिर भी जारी रखें?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Posredna veza"), ("Relay Connection", "Posredna veza"),
("Secure Connection", "Sigurna veza"), ("Secure Connection", "Sigurna veza"),
("Insecure Connection", "Nesigurna veza"), ("Insecure Connection", "Nesigurna veza"),
("Continue", ""),
("Scale original", "Skaliraj izvornik"), ("Scale original", "Skaliraj izvornik"),
("Scale adaptive", "Prilagođeno skaliranje"), ("Scale adaptive", "Prilagođeno skaliranje"),
("General", "Općenito"), ("General", "Općenito"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Prikaži na minimiziranoj alatnoj traci"), ("Show on the minimized toolbar", "Prikaži na minimiziranoj alatnoj traci"),
("All monitors", "Svi monitori"), ("All monitors", "Svi monitori"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "End-to-end enkripcija nije mogla biti potvrđena.\nUdaljeni uređaj se možda još postavlja. Pokušajte ponovno kasnije.\nAko se to nastavi događati, poslužitelj možda nije pouzdan.\nIpak nastaviti?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Kapcsolódás továbbító-kiszolgálón keresztül"), ("Relay Connection", "Kapcsolódás továbbító-kiszolgálón keresztül"),
("Secure Connection", "Biztonságos kapcsolat"), ("Secure Connection", "Biztonságos kapcsolat"),
("Insecure Connection", "Nem biztonságos kapcsolat"), ("Insecure Connection", "Nem biztonságos kapcsolat"),
("Continue", ""),
("Scale original", "Eredeti méretarány"), ("Scale original", "Eredeti méretarány"),
("Scale adaptive", "Adaptív méretarány"), ("Scale adaptive", "Adaptív méretarány"),
("General", "Általános"), ("General", "Általános"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Megjelenítés a kis méretű eszköztáron"), ("Show on the minimized toolbar", "Megjelenítés a kis méretű eszköztáron"),
("All monitors", "Minden monitor"), ("All monitors", "Minden monitor"),
("#{} monitor", "{}. monitor"), ("#{} monitor", "{}. monitor"),
("conn-e2ee-unavailable-tip", "A végpontok közötti titkosítás nem volt ellenőrizhető.\nA távoli eszköz talán még beállítás alatt áll. Próbálja újra később.\nHa ez továbbra is előfordul, a szerver lehet, hogy nem megbízható.\nFolytatja így is?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Koneksi Relay"), ("Relay Connection", "Koneksi Relay"),
("Secure Connection", "Koneksi aman"), ("Secure Connection", "Koneksi aman"),
("Insecure Connection", "Koneksi Tidak Aman"), ("Insecure Connection", "Koneksi Tidak Aman"),
("Continue", ""),
("Scale original", "Skala asli"), ("Scale original", "Skala asli"),
("Scale adaptive", "Skala adaptif"), ("Scale adaptive", "Skala adaptif"),
("General", "Umum"), ("General", "Umum"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Tampilkan di bilah alat yang diperkecil"), ("Show on the minimized toolbar", "Tampilkan di bilah alat yang diperkecil"),
("All monitors", "Semua monitor"), ("All monitors", "Semua monitor"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "Tidak dapat memverifikasi enkripsi ujung ke ujung.\nPerangkat jarak jauh mungkin masih disiapkan. Coba lagi nanti.\nJika ini terus terjadi, server mungkin tidak tepercaya.\nTetap lanjutkan?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Connessione relay"), ("Relay Connection", "Connessione relay"),
("Secure Connection", "Connessione sicura"), ("Secure Connection", "Connessione sicura"),
("Insecure Connection", "Connessione non sicura"), ("Insecure Connection", "Connessione non sicura"),
("Continue", ""),
("Scale original", "Scala originale"), ("Scale original", "Scala originale"),
("Scale adaptive", "Scala adattiva"), ("Scale adaptive", "Scala adattiva"),
("General", "Generale"), ("General", "Generale"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Visualizza nella barra strumenti ridotta a icona"), ("Show on the minimized toolbar", "Visualizza nella barra strumenti ridotta a icona"),
("All monitors", "Tutti gli schermi"), ("All monitors", "Tutti gli schermi"),
("#{} monitor", "Schermo {}"), ("#{} monitor", "Schermo {}"),
("conn-e2ee-unavailable-tip", "Impossibile verificare la crittografia end-to-end.\nIl dispositivo remoto potrebbe essere ancora in configurazione. Riprova più tardi.\nSe il problema persiste, il server potrebbe non essere attendibile.\nContinuare comunque?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "中継接続"), ("Relay Connection", "中継接続"),
("Secure Connection", "安全な接続"), ("Secure Connection", "安全な接続"),
("Insecure Connection", "安全でない接続"), ("Insecure Connection", "安全でない接続"),
("Continue", ""),
("Scale original", "オリジナルのサイズ"), ("Scale original", "オリジナルのサイズ"),
("Scale adaptive", "ウィンドウに合わせる"), ("Scale adaptive", "ウィンドウに合わせる"),
("General", "一般"), ("General", "一般"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "最小化したツールバーに表示"), ("Show on the minimized toolbar", "最小化したツールバーに表示"),
("All monitors", "すべてのディスプレイ"), ("All monitors", "すべてのディスプレイ"),
("#{} monitor", "ディスプレイ {}"), ("#{} monitor", "ディスプレイ {}"),
("conn-e2ee-unavailable-tip", "エンドツーエンド暗号化を確認できませんでした。\nリモートデバイスはまだ準備中の可能性があります。後でもう一度お試しください。\nこの問題が続く場合、サーバーが信頼できない可能性があります。\nそれでも続行しますか?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "릴레이 연결"), ("Relay Connection", "릴레이 연결"),
("Secure Connection", "보안 연결"), ("Secure Connection", "보안 연결"),
("Insecure Connection", "보안되지 않은 연결"), ("Insecure Connection", "보안되지 않은 연결"),
("Continue", ""),
("Scale original", "원본 크기 조정"), ("Scale original", "원본 크기 조정"),
("Scale adaptive", "크기 조정 가능"), ("Scale adaptive", "크기 조정 가능"),
("General", "일반"), ("General", "일반"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "최소화된 도구 모음에 표시"), ("Show on the minimized toolbar", "최소화된 도구 모음에 표시"),
("All monitors", "모든 모니터"), ("All monitors", "모든 모니터"),
("#{} monitor", "#{} 모니터"), ("#{} monitor", "#{} 모니터"),
("conn-e2ee-unavailable-tip", "종단 간 암호화를 확인할 수 없습니다.\n원격 장치가 아직 설정 중일 수 있습니다. 나중에 다시 시도하세요.\n이 문제가 계속되면 서버를 신뢰할 수 없을 수 있습니다.\n그래도 계속하시겠습니까?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Релай Қосылым"), ("Relay Connection", "Релай Қосылым"),
("Secure Connection", "Қауіпсіз Қосылым"), ("Secure Connection", "Қауіпсіз Қосылым"),
("Insecure Connection", "Қатерлі Қосылым"), ("Insecure Connection", "Қатерлі Қосылым"),
("Continue", ""),
("Scale original", "Scale original"), ("Scale original", "Scale original"),
("Scale adaptive", "Scale adaptive"), ("Scale adaptive", "Scale adaptive"),
("General", "Жалпы"), ("General", "Жалпы"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Кішірейтілген құралдар тақтасында көрсету"), ("Show on the minimized toolbar", "Кішірейтілген құралдар тақтасында көрсету"),
("All monitors", "Барлық мониторлар"), ("All monitors", "Барлық мониторлар"),
("#{} monitor", "Монитор {}"), ("#{} monitor", "Монитор {}"),
("conn-e2ee-unavailable-tip", "Ұштан-ұшқа шифрлауды тексеру мүмкін болмады.\nҚашықтағы құрылғы әлі бапталып жатқан болуы мүмкін. Кейінірек қайталап көріңіз.\nЕгер бұл қайталана берсе, сервер сенімсіз болуы мүмкін.\nСонда да жалғастыру керек пе?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Tarpinė jungtis"), ("Relay Connection", "Tarpinė jungtis"),
("Secure Connection", "Saugus ryšys"), ("Secure Connection", "Saugus ryšys"),
("Insecure Connection", "Nesaugus ryšys"), ("Insecure Connection", "Nesaugus ryšys"),
("Continue", ""),
("Scale original", "Pakeisti originalų mastelį"), ("Scale original", "Pakeisti originalų mastelį"),
("Scale adaptive", "Pritaikomas mastelis"), ("Scale adaptive", "Pritaikomas mastelis"),
("General", "Bendra"), ("General", "Bendra"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Rodyti sumažintoje įrankių juostoje"), ("Show on the minimized toolbar", "Rodyti sumažintoje įrankių juostoje"),
("All monitors", "Visi monitoriai"), ("All monitors", "Visi monitoriai"),
("#{} monitor", "Monitorius {}"), ("#{} monitor", "Monitorius {}"),
("conn-e2ee-unavailable-tip", "Nepavyko patikrinti galinio šifravimo.\nNuotolinis įrenginys galbūt vis dar nustatomas. Bandykite dar kartą vėliau.\nJei tai kartojasi, serveris gali būti nepatikimas.\nVis tiek tęsti?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Releja savienojums"), ("Relay Connection", "Releja savienojums"),
("Secure Connection", "Drošs savienojums"), ("Secure Connection", "Drošs savienojums"),
("Insecure Connection", "Nedrošs savienojums"), ("Insecure Connection", "Nedrošs savienojums"),
("Continue", ""),
("Scale original", "Mērogs oriģināls"), ("Scale original", "Mērogs oriģināls"),
("Scale adaptive", "Mērogs adaptīvs"), ("Scale adaptive", "Mērogs adaptīvs"),
("General", "Vispārīgi"), ("General", "Vispārīgi"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Rādīt minimizētajā rīkjoslā"), ("Show on the minimized toolbar", "Rādīt minimizētajā rīkjoslā"),
("All monitors", "Visi monitori"), ("All monitors", "Visi monitori"),
("#{} monitor", "Monitors {}"), ("#{} monitor", "Monitors {}"),
("conn-e2ee-unavailable-tip", "Neizdevās pārbaudīt pilnīgu šifrēšanu.\nAttālā ierīce, iespējams, vēl tiek iestatīta. Mēģiniet vēlreiz vēlāk.\nJa tas turpinās, serveris var nebūt uzticams.\nVai tomēr turpināt?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "റിലേ കണക്ഷൻ"), ("Relay Connection", "റിലേ കണക്ഷൻ"),
("Secure Connection", "സുരക്ഷിതമായ കണക്ഷൻ"), ("Secure Connection", "സുരക്ഷിതമായ കണക്ഷൻ"),
("Insecure Connection", "സുരക്ഷിതമല്ലാത്ത കണക്ഷൻ"), ("Insecure Connection", "സുരക്ഷിതമല്ലാത്ത കണക്ഷൻ"),
("Continue", ""),
("Scale original", "ഒറിജിനൽ വലിപ്പം"), ("Scale original", "ഒറിജിനൽ വലിപ്പം"),
("Scale adaptive", "അഡാപ്റ്റീവ് വലിപ്പം"), ("Scale adaptive", "അഡാപ്റ്റീവ് വലിപ്പം"),
("General", "പൊതുവായവ"), ("General", "പൊതുവായവ"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "ചെറുതാക്കിയ ടൂൾബാറിൽ കാണിക്കുക"), ("Show on the minimized toolbar", "ചെറുതാക്കിയ ടൂൾബാറിൽ കാണിക്കുക"),
("All monitors", "എല്ലാ മോണിറ്ററുകളും"), ("All monitors", "എല്ലാ മോണിറ്ററുകളും"),
("#{} monitor", "മോണിറ്റർ {}"), ("#{} monitor", "മോണിറ്റർ {}"),
("conn-e2ee-unavailable-tip", "എൻഡ്-ടു-എൻഡ് എൻക്രിപ്ഷൻ പരിശോധിക്കാൻ കഴിഞ്ഞില്ല.\nദൂരസ്ഥ ഉപകരണം ഇനിയും സജ്ജീകരണത്തിലായിരിക്കാം. പിന്നീട് വീണ്ടും ശ്രമിക്കുക.\nഇത് തുടർന്നാൽ സർവർ വിശ്വസനീയമല്ലായിരിക്കാം.\nഎങ്കിലും തുടരണമോ?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Viderekoblet tilkobling"), ("Relay Connection", "Viderekoblet tilkobling"),
("Secure Connection", "Sikker tilkobling"), ("Secure Connection", "Sikker tilkobling"),
("Insecure Connection", "Usikker tilkobling"), ("Insecure Connection", "Usikker tilkobling"),
("Continue", ""),
("Scale original", "Original skalering"), ("Scale original", "Original skalering"),
("Scale adaptive", "Adaptiv skalering"), ("Scale adaptive", "Adaptiv skalering"),
("General", "Generelt"), ("General", "Generelt"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Vis på den minimerte verktøylinjen"), ("Show on the minimized toolbar", "Vis på den minimerte verktøylinjen"),
("All monitors", "Alle skjermer"), ("All monitors", "Alle skjermer"),
("#{} monitor", "Skjerm {}"), ("#{} monitor", "Skjerm {}"),
("conn-e2ee-unavailable-tip", "Ende-til-ende-kryptering kunne ikke verifiseres.\nDen eksterne enheten kan fortsatt være under oppsett. Prøv igjen senere.\nHvis dette fortsetter, kan serveren være upålitelig.\nFortsette likevel?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Relaisverbinding"), ("Relay Connection", "Relaisverbinding"),
("Secure Connection", "Beveiligde Verbinding"), ("Secure Connection", "Beveiligde Verbinding"),
("Insecure Connection", "Onveilige Verbinding"), ("Insecure Connection", "Onveilige Verbinding"),
("Continue", ""),
("Scale original", "Oorspronkelijk formaat"), ("Scale original", "Oorspronkelijk formaat"),
("Scale adaptive", "Automatisch schalen"), ("Scale adaptive", "Automatisch schalen"),
("General", "Algemeen"), ("General", "Algemeen"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Weergeven op de geminimaliseerde werkbalk"), ("Show on the minimized toolbar", "Weergeven op de geminimaliseerde werkbalk"),
("All monitors", "Alle monitoren"), ("All monitors", "Alle monitoren"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "End-to-endversleuteling kon niet worden geverifieerd.\nHet externe apparaat wordt mogelijk nog ingesteld. Probeer het later opnieuw.\nAls dit blijft gebeuren, is de server mogelijk niet vertrouwd.\nToch doorgaan?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Połączenie przez bramkę"), ("Relay Connection", "Połączenie przez bramkę"),
("Secure Connection", "Połączenie szyfrowane"), ("Secure Connection", "Połączenie szyfrowane"),
("Insecure Connection", "Połączenie nieszyfrowane"), ("Insecure Connection", "Połączenie nieszyfrowane"),
("Continue", ""),
("Scale original", "Skalowanie oryginalne"), ("Scale original", "Skalowanie oryginalne"),
("Scale adaptive", "Dopasuj do wyświetlacza"), ("Scale adaptive", "Dopasuj do wyświetlacza"),
("General", "Ogólne"), ("General", "Ogólne"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Pokaż na zminimalizowanym pasku narzędzi"), ("Show on the minimized toolbar", "Pokaż na zminimalizowanym pasku narzędzi"),
("All monitors", "Wszystkie ekrany"), ("All monitors", "Wszystkie ekrany"),
("#{} monitor", "Ekran {}"), ("#{} monitor", "Ekran {}"),
("conn-e2ee-unavailable-tip", "Nie można zweryfikować szyfrowania end-to-end.\nUrządzenie zdalne może nadal się konfigurować. Spróbuj ponownie później.\nJeśli problem będzie się powtarzał, serwer może być niezaufany.\nKontynuować mimo to?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Conexão de relé"), ("Relay Connection", "Conexão de relé"),
("Secure Connection", "Conexão segura"), ("Secure Connection", "Conexão segura"),
("Insecure Connection", "Conexão insegura"), ("Insecure Connection", "Conexão insegura"),
("Continue", ""),
("Scale original", "Escala original"), ("Scale original", "Escala original"),
("Scale adaptive", "Escala adaptável"), ("Scale adaptive", "Escala adaptável"),
("General", "Geral"), ("General", "Geral"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Mostrar na barra de ferramentas minimizada"), ("Show on the minimized toolbar", "Mostrar na barra de ferramentas minimizada"),
("All monitors", "Todos os monitores"), ("All monitors", "Todos os monitores"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "Não foi possível verificar a encriptação de ponta a ponta.\nO dispositivo remoto ainda pode estar a ser configurado. Tente novamente mais tarde.\nSe isto continuar a acontecer, o servidor pode não ser fidedigno.\nContinuar mesmo assim?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Conexão via Relay"), ("Relay Connection", "Conexão via Relay"),
("Secure Connection", "Conexão Segura"), ("Secure Connection", "Conexão Segura"),
("Insecure Connection", "Conexão Insegura"), ("Insecure Connection", "Conexão Insegura"),
("Continue", ""),
("Scale original", "Escala original"), ("Scale original", "Escala original"),
("Scale adaptive", "Escala adaptada"), ("Scale adaptive", "Escala adaptada"),
("General", "Geral"), ("General", "Geral"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Mostrar na barra de ferramentas minimizada"), ("Show on the minimized toolbar", "Mostrar na barra de ferramentas minimizada"),
("All monitors", "Todas as telas"), ("All monitors", "Todas as telas"),
("#{} monitor", "Tela {}"), ("#{} monitor", "Tela {}"),
("conn-e2ee-unavailable-tip", "Não foi possível verificar a criptografia de ponta a ponta.\nO dispositivo remoto ainda pode estar sendo configurado. Tente novamente mais tarde.\nSe isso continuar acontecendo, o servidor pode não ser confiável.\nContinuar mesmo assim?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Conexiune prin retransmisie"), ("Relay Connection", "Conexiune prin retransmisie"),
("Secure Connection", "Conexiune securizată"), ("Secure Connection", "Conexiune securizată"),
("Insecure Connection", "Conexiune nesecurizată"), ("Insecure Connection", "Conexiune nesecurizată"),
("Continue", ""),
("Scale original", "Dimensiune originală"), ("Scale original", "Dimensiune originală"),
("Scale adaptive", "Scalare automată"), ("Scale adaptive", "Scalare automată"),
("General", "General"), ("General", "General"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Afișează în bara de instrumente minimizată"), ("Show on the minimized toolbar", "Afișează în bara de instrumente minimizată"),
("All monitors", "Toate monitoarele"), ("All monitors", "Toate monitoarele"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "Criptarea end-to-end nu a putut fi verificată.\nDispozitivul la distanță poate fi încă în curs de configurare. Încercați din nou mai târziu.\nDacă acest lucru continuă, serverul poate să nu fie de încredere.\nContinuați oricum?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Ретранслируемое подключение"), ("Relay Connection", "Ретранслируемое подключение"),
("Secure Connection", "Безопасное подключение"), ("Secure Connection", "Безопасное подключение"),
("Insecure Connection", "Небезопасное подключение"), ("Insecure Connection", "Небезопасное подключение"),
("Continue", ""),
("Scale original", "Оригинальный масштаб"), ("Scale original", "Оригинальный масштаб"),
("Scale adaptive", "Адаптивный масштаб"), ("Scale adaptive", "Адаптивный масштаб"),
("General", "Общие"), ("General", "Общие"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Показывать на свёрнутой панели инструментов"), ("Show on the minimized toolbar", "Показывать на свёрнутой панели инструментов"),
("All monitors", "Все мониторы"), ("All monitors", "Все мониторы"),
("#{} monitor", "Монитор {}"), ("#{} monitor", "Монитор {}"),
("conn-e2ee-unavailable-tip", "Не удалось проверить сквозное шифрование.\nУдаленное устройство, возможно, еще настраивается. Повторите попытку позже.\nЕсли это повторяется, сервер может быть ненадежным.\nВсе равно продолжить?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Connessione tramudada (relay)"), ("Relay Connection", "Connessione tramudada (relay)"),
("Secure Connection", "Connessione segura"), ("Secure Connection", "Connessione segura"),
("Insecure Connection", "Connessione non segura"), ("Insecure Connection", "Connessione non segura"),
("Continue", ""),
("Scale original", "Iscala originale"), ("Scale original", "Iscala originale"),
("Scale adaptive", "Iscala adativa"), ("Scale adaptive", "Iscala adativa"),
("General", "Generale"), ("General", "Generale"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Mustra in sa barra de aina minimizada"), ("Show on the minimized toolbar", "Mustra in sa barra de aina minimizada"),
("All monitors", "Totu sos ischermos"), ("All monitors", "Totu sos ischermos"),
("#{} monitor", "Ischermu {}"), ("#{} monitor", "Ischermu {}"),
("conn-e2ee-unavailable-tip", "No est istadu possìbile verificare sa tzifratzione de punta a punta.\nSu dispositivu remotu podet èssere ancora in fase de configuratzione. Torra a proare prus a tardu.\nSi custu sighit a acontèssere, su server podet non èssere fidadu.\nBoles sighire comente siat?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Reléové pripojenie"), ("Relay Connection", "Reléové pripojenie"),
("Secure Connection", "Zabezpečené pripojenie"), ("Secure Connection", "Zabezpečené pripojenie"),
("Insecure Connection", "Nezabezpečené pripojenie"), ("Insecure Connection", "Nezabezpečené pripojenie"),
("Continue", ""),
("Scale original", "Pôvodná mierka"), ("Scale original", "Pôvodná mierka"),
("Scale adaptive", "Prispôsobivá mierka"), ("Scale adaptive", "Prispôsobivá mierka"),
("General", "Všeobecné"), ("General", "Všeobecné"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Zobraziť na minimalizovanom paneli nástrojov"), ("Show on the minimized toolbar", "Zobraziť na minimalizovanom paneli nástrojov"),
("All monitors", "Všetky monitory"), ("All monitors", "Všetky monitory"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "Nepodarilo sa overiť koncové šifrovanie.\nVzdialené zariadenie sa možno stále nastavuje. Skúste to znova neskôr.\nAk sa to bude opakovať, server nemusí byť dôveryhodný.\nNapriek tomu pokračovať?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Posredovana povezava"), ("Relay Connection", "Posredovana povezava"),
("Secure Connection", "Zavarovana povezava"), ("Secure Connection", "Zavarovana povezava"),
("Insecure Connection", "Nezavarovana povezava"), ("Insecure Connection", "Nezavarovana povezava"),
("Continue", ""),
("Scale original", "Originalna velikost"), ("Scale original", "Originalna velikost"),
("Scale adaptive", "Prilagojena velikost"), ("Scale adaptive", "Prilagojena velikost"),
("General", "Splošno"), ("General", "Splošno"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Pokaži v pomanjšani orodni vrstici"), ("Show on the minimized toolbar", "Pokaži v pomanjšani orodni vrstici"),
("All monitors", "Vsi zasloni"), ("All monitors", "Vsi zasloni"),
("#{} monitor", "Zaslon {}"), ("#{} monitor", "Zaslon {}"),
("conn-e2ee-unavailable-tip", "Šifriranja od konca do konca ni bilo mogoče preveriti.\nOddaljena naprava se morda še nastavlja. Poskusite znova pozneje.\nČe se to še naprej dogaja, strežnik morda ni zaupanja vreden.\nVseeno nadaljevati?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Lidhja rele"), ("Relay Connection", "Lidhja rele"),
("Secure Connection", "Lidhje e sigurt"), ("Secure Connection", "Lidhje e sigurt"),
("Insecure Connection", "Lidhje e pasigurt"), ("Insecure Connection", "Lidhje e pasigurt"),
("Continue", ""),
("Scale original", "Shkalla origjinale"), ("Scale original", "Shkalla origjinale"),
("Scale adaptive", " E përsjhtatshme në shkallë"), ("Scale adaptive", " E përsjhtatshme në shkallë"),
("General", "Gjeneral"), ("General", "Gjeneral"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Shfaq te shiriti i minimizuar i veglave"), ("Show on the minimized toolbar", "Shfaq te shiriti i minimizuar i veglave"),
("All monitors", "Të gjithë monitorët"), ("All monitors", "Të gjithë monitorët"),
("#{} monitor", "Monitori {}"), ("#{} monitor", "Monitori {}"),
("conn-e2ee-unavailable-tip", "Enkriptimi nga skaji në skaj nuk mund të verifikohej.\nPajisja e largët mund të jetë ende duke u konfiguruar. Provoni përsëri më vonë.\nNëse kjo vazhdon të ndodhë, serveri mund të mos jetë i besueshëm.\nTë vazhdohet gjithsesi?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Posredna konekcija"), ("Relay Connection", "Posredna konekcija"),
("Secure Connection", "Bezbedna konekcija"), ("Secure Connection", "Bezbedna konekcija"),
("Insecure Connection", "Nebezbedna konekcija"), ("Insecure Connection", "Nebezbedna konekcija"),
("Continue", ""),
("Scale original", "Skaliraj original"), ("Scale original", "Skaliraj original"),
("Scale adaptive", "Adaptivno skaliranje"), ("Scale adaptive", "Adaptivno skaliranje"),
("General", "Uopšteno"), ("General", "Uopšteno"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Прикажи на умањеној траци са алаткама"), ("Show on the minimized toolbar", "Прикажи на умањеној траци са алаткама"),
("All monitors", "Svi monitori"), ("All monitors", "Svi monitori"),
("#{} monitor", "Monitor {}"), ("#{} monitor", "Monitor {}"),
("conn-e2ee-unavailable-tip", "Није могуће проверити енд-то-енд шифровање.\nУдаљени уређај се можда још подешава. Покушајте поново касније.\nАко се ово настави, сервер можда није поуздан.\nНаставити свеједно?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Relayanslutning"), ("Relay Connection", "Relayanslutning"),
("Secure Connection", "Säker anslutning"), ("Secure Connection", "Säker anslutning"),
("Insecure Connection", "Osäker anslutning"), ("Insecure Connection", "Osäker anslutning"),
("Continue", ""),
("Scale original", "Skala orginal"), ("Scale original", "Skala orginal"),
("Scale adaptive", "Skala adaptivt"), ("Scale adaptive", "Skala adaptivt"),
("General", "Generellt"), ("General", "Generellt"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Visa i det minimerade verktygsfältet"), ("Show on the minimized toolbar", "Visa i det minimerade verktygsfältet"),
("All monitors", "Alla skärmar"), ("All monitors", "Alla skärmar"),
("#{} monitor", "Skärm {}"), ("#{} monitor", "Skärm {}"),
("conn-e2ee-unavailable-tip", "End-to-end-kryptering kunde inte verifieras.\nFjärrenheten kan fortfarande konfigureras. Försök igen senare.\nOm detta fortsätter kan servern vara opålitlig.\nFortsätta ändå?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "ரிலே இணைப்பு"), ("Relay Connection", "ரிலே இணைப்பு"),
("Secure Connection", "பாதுகாப்பான இணைப்பு"), ("Secure Connection", "பாதுகாப்பான இணைப்பு"),
("Insecure Connection", "பாதுகாப்பற்ற இணைப்பு"), ("Insecure Connection", "பாதுகாப்பற்ற இணைப்பு"),
("Continue", ""),
("Scale original", "அசல் அளவு"), ("Scale original", "அசல் அளவு"),
("Scale adaptive", "தகவமைப்பு அளவு"), ("Scale adaptive", "தகவமைப்பு அளவு"),
("General", "பொது"), ("General", "பொது"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "சிறிதாக்கப்பட்ட கருவிப்பட்டையில் காட்டு"), ("Show on the minimized toolbar", "சிறிதாக்கப்பட்ட கருவிப்பட்டையில் காட்டு"),
("All monitors", "அனைத்து மானிட்டர்களும்"), ("All monitors", "அனைத்து மானிட்டர்களும்"),
("#{} monitor", "மானிட்டர் {}"), ("#{} monitor", "மானிட்டர் {}"),
("conn-e2ee-unavailable-tip", "முடிவு-முதல்-முடிவு குறியாக்கத்தை சரிபார்க்க முடியவில்லை.\nதொலை சாதனம் இன்னும் அமைக்கப்பட்டுக் கொண்டிருக்கலாம். பின்னர் மீண்டும் முயற்சிக்கவும்.\nஇது தொடர்ந்து நடந்தால், சேவையகம் நம்பகமற்றதாக இருக்கலாம்.\nஎப்படியும் தொடரவா?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", ""), ("Relay Connection", ""),
("Secure Connection", ""), ("Secure Connection", ""),
("Insecure Connection", ""), ("Insecure Connection", ""),
("Continue", ""),
("Scale original", ""), ("Scale original", ""),
("Scale adaptive", ""), ("Scale adaptive", ""),
("General", ""), ("General", ""),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", ""), ("Show on the minimized toolbar", ""),
("All monitors", ""), ("All monitors", ""),
("#{} monitor", ""), ("#{} monitor", ""),
("conn-e2ee-unavailable-tip", ""),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "การเชื่อมต่อแบบ Relay "), ("Relay Connection", "การเชื่อมต่อแบบ Relay "),
("Secure Connection", "การเชื่อมต่อที่ปลอดภัย"), ("Secure Connection", "การเชื่อมต่อที่ปลอดภัย"),
("Insecure Connection", "การเชื่อมต่อที่ไม่ปลอดภัย"), ("Insecure Connection", "การเชื่อมต่อที่ไม่ปลอดภัย"),
("Continue", ""),
("Scale original", "ขนาดเดิม"), ("Scale original", "ขนาดเดิม"),
("Scale adaptive", "ขนาดยืดหยุ่น"), ("Scale adaptive", "ขนาดยืดหยุ่น"),
("General", "ทั่วไป"), ("General", "ทั่วไป"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "แสดงบนแถบเครื่องมือที่ย่อเล็กสุด"), ("Show on the minimized toolbar", "แสดงบนแถบเครื่องมือที่ย่อเล็กสุด"),
("All monitors", "จอภาพทั้งหมด"), ("All monitors", "จอภาพทั้งหมด"),
("#{} monitor", "จอภาพ {}"), ("#{} monitor", "จอภาพ {}"),
("conn-e2ee-unavailable-tip", "ไม่สามารถยืนยันการเข้ารหัสแบบต้นทางถึงปลายทางได้\nอุปกรณ์ระยะไกลอาจยังอยู่ระหว่างการตั้งค่า โปรดลองอีกครั้งภายหลัง\nหากปัญหานี้ยังเกิดขึ้นต่อไป เซิร์ฟเวอร์อาจไม่น่าเชื่อถือ\nต้องการดำเนินการต่อหรือไม่?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Aktarmalı Bağlantı"), ("Relay Connection", "Aktarmalı Bağlantı"),
("Secure Connection", "Güvenli Bağlantı"), ("Secure Connection", "Güvenli Bağlantı"),
("Insecure Connection", "Güvenli Olmayan Bağlantı"), ("Insecure Connection", "Güvenli Olmayan Bağlantı"),
("Continue", ""),
("Scale original", "Orijinal ölçekte"), ("Scale original", "Orijinal ölçekte"),
("Scale adaptive", "Uyarlanabilir ölçekte"), ("Scale adaptive", "Uyarlanabilir ölçekte"),
("General", "Genel"), ("General", "Genel"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Simge durumuna küçültülmüş araç çubuğunda göster"), ("Show on the minimized toolbar", "Simge durumuna küçültülmüş araç çubuğunda göster"),
("All monitors", "Tüm monitörler"), ("All monitors", "Tüm monitörler"),
("#{} monitor", "Monitör {}"), ("#{} monitor", "Monitör {}"),
("conn-e2ee-unavailable-tip", "Uçtan uca şifreleme doğrulanamadı.\nUzak cihaz hâlâ kuruluyor olabilir. Daha sonra tekrar deneyin.\nBu sorun devam ederse sunucu güvenilir olmayabilir.\nYine de devam edilsin mi?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "中繼連線"), ("Relay Connection", "中繼連線"),
("Secure Connection", "安全連線"), ("Secure Connection", "安全連線"),
("Insecure Connection", "非安全連線"), ("Insecure Connection", "非安全連線"),
("Continue", ""),
("Scale original", "原始尺寸"), ("Scale original", "原始尺寸"),
("Scale adaptive", "適應視窗"), ("Scale adaptive", "適應視窗"),
("General", "一般"), ("General", "一般"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "在最小化工具列上顯示"), ("Show on the minimized toolbar", "在最小化工具列上顯示"),
("All monitors", "所有顯示器"), ("All monitors", "所有顯示器"),
("#{} monitor", "{}號顯示器"), ("#{} monitor", "{}號顯示器"),
("conn-e2ee-unavailable-tip", "無法驗證端對端加密。\n遠端裝置可能仍在準備中,請稍後重試。\n如果此問題持續發生,伺服器可能不受信任。\n仍要繼續嗎?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Ретрансльоване підключення"), ("Relay Connection", "Ретрансльоване підключення"),
("Secure Connection", "Безпечне підключення"), ("Secure Connection", "Безпечне підключення"),
("Insecure Connection", "Небезпечне підключення"), ("Insecure Connection", "Небезпечне підключення"),
("Continue", ""),
("Scale original", "Оригінальний масштаб"), ("Scale original", "Оригінальний масштаб"),
("Scale adaptive", "Адаптивний масштаб"), ("Scale adaptive", "Адаптивний масштаб"),
("General", "Загальні"), ("General", "Загальні"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Показувати на згорнутій панелі інструментів"), ("Show on the minimized toolbar", "Показувати на згорнутій панелі інструментів"),
("All monitors", "Усі монітори"), ("All monitors", "Усі монітори"),
("#{} monitor", "Монітор {}"), ("#{} monitor", "Монітор {}"),
("conn-e2ee-unavailable-tip", "Не вдалося перевірити наскрізне шифрування.\nВіддалений пристрій, можливо, ще налаштовується. Спробуйте пізніше.\nЯкщо це повторюється, сервер може бути ненадійним.\nПродовжити все одно?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -332,6 +332,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Relay Connection", "Kết nối chuyển tiếp"), ("Relay Connection", "Kết nối chuyển tiếp"),
("Secure Connection", "Kết nối bảo mật"), ("Secure Connection", "Kết nối bảo mật"),
("Insecure Connection", "Kết nối không bảo mật"), ("Insecure Connection", "Kết nối không bảo mật"),
("Continue", ""),
("Scale original", "Tỷ lệ gốc"), ("Scale original", "Tỷ lệ gốc"),
("Scale adaptive", "Tỷ lệ thích ứng"), ("Scale adaptive", "Tỷ lệ thích ứng"),
("General", "Chung"), ("General", "Chung"),
@@ -763,5 +764,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Show on the minimized toolbar", "Hiển thị trên thanh công cụ thu nhỏ"), ("Show on the minimized toolbar", "Hiển thị trên thanh công cụ thu nhỏ"),
("All monitors", "Tất cả màn hình"), ("All monitors", "Tất cả màn hình"),
("#{} monitor", "Màn hình {}"), ("#{} monitor", "Màn hình {}"),
("conn-e2ee-unavailable-tip", "Không thể xác minh mã hóa đầu cuối.\nThiết bị từ xa có thể vẫn đang được thiết lập. Hãy thử lại sau.\nNếu điều này tiếp tục xảy ra, máy chủ có thể không đáng tin cậy.\nVẫn tiếp tục?"),
].iter().cloned().collect(); ].iter().cloned().collect();
} }

View File

@@ -69,7 +69,8 @@ pub async fn listen(
let id = id.clone(); let id = id.clone();
let password = password.clone(); let password = password.clone();
let mut forward = Framed::new(forward, BytesCodec::new()); let mut forward = Framed::new(forward, BytesCodec::new());
match connect_and_login(&id, &password, &mut ui_receiver, interface.clone(), &mut forward, key, token, is_rdp).await { let mut close_port_forward = false;
match connect_and_login(&id, &password, &mut ui_receiver, interface.clone(), &mut forward, key, token, is_rdp, &mut close_port_forward).await {
Ok(Some(stream)) => { Ok(Some(stream)) => {
let interface = interface.clone(); let interface = interface.clone();
tokio::spawn(async move { tokio::spawn(async move {
@@ -79,6 +80,9 @@ pub async fn listen(
log::info!("connection from {:?} closed", addr); log::info!("connection from {:?} closed", addr);
}); });
} }
_ if close_port_forward => {
break;
}
Err(err) => { Err(err) => {
interface.on_establish_connection_error(err.to_string()); interface.on_establish_connection_error(err.to_string());
} }
@@ -111,6 +115,7 @@ async fn connect_and_login(
key: &str, key: &str,
token: &str, token: &str,
is_rdp: bool, is_rdp: bool,
close_port_forward: &mut bool,
) -> ResultType<Option<Stream>> { ) -> ResultType<Option<Stream>> {
let conn_type = if is_rdp { let conn_type = if is_rdp {
ConnType::RDP ConnType::RDP
@@ -120,6 +125,12 @@ async fn connect_and_login(
let ((mut stream, direct, _pk, _kcp, _stream_type), (feedback, rendezvous_server)) = let ((mut stream, direct, _pk, _kcp, _stream_type), (feedback, rendezvous_server)) =
Client::start(id, key, token, conn_type, interface.clone()).await?; Client::start(id, key, token, conn_type, interface.clone()).await?;
interface.update_direct(Some(direct)); interface.update_direct(Some(direct));
if !stream.is_secured() && !crate::common::is_direct_ip_access(id) {
if !confirm_insecure_connection(&interface, ui_receiver).await {
*close_port_forward = true;
return Ok(None);
}
}
let mut buffer = Vec::new(); let mut buffer = Vec::new();
let mut received = false; let mut received = false;

View File

@@ -2587,9 +2587,7 @@ impl Connection {
} }
} }
if !hbb_common::is_ip_str(&lr.username) if !crate::common::is_direct_ip_access(&lr.username) && lr.username != Config::get_id()
&& !hbb_common::is_domain_port_str(&lr.username)
&& lr.username != Config::get_id()
{ {
self.send_login_error(crate::client::LOGIN_MSG_OFFLINE) self.send_login_error(crate::client::LOGIN_MSG_OFFLINE)
.await; .await;

View File

@@ -296,6 +296,15 @@ function msgbox(type, title, content, link="", callback=null, height=180, width=
else msgbox("connecting", "Connecting...", "Logging in..."); else msgbox("connecting", "Connecting...", "Logging in...");
} }
}; };
} else if (type.indexOf("insecure-connection") >= 0) {
callback = function (res) {
if (!res) {
handler.continue_insecure_connection(false);
view.close();
return;
}
handler.continue_insecure_connection(true);
};
} else if (type.indexOf("custom") < 0 && !is_port_forward && !callback) { } else if (type.indexOf("custom") < 0 && !is_port_forward && !callback) {
callback = function() { view.close(); } callback = function() { view.close(); }
} else if (type == 'wait-remote-accept-nook') { } else if (type == 'wait-remote-accept-nook') {
@@ -479,4 +488,4 @@ class MultipleSessionComponent extends Reactor.Component {
</select> </select>
</div>; </div>;
} }
} }

View File

@@ -152,6 +152,7 @@ class MsgboxComponent: Reactor.Component {
var hasOk = this.type != "connecting" && this.type != "success" && this.type.indexOf("nook") < 0; var hasOk = this.type != "connecting" && this.type != "success" && this.type.indexOf("nook") < 0;
var hasLink = this.link != ""; var hasLink = this.link != "";
var hasClose = this.type.indexOf("hasclose") >= 0; var hasClose = this.type.indexOf("hasclose") >= 0;
var isInsecureConnection = this.type.indexOf("insecure-connection") >= 0;
var show_progress = this.type == "connecting"; var show_progress = this.type == "connecting";
var me = this; var me = this;
self.timer(0, msgboxTimerFunc); self.timer(0, msgboxTimerFunc);
@@ -176,11 +177,12 @@ class MsgboxComponent: Reactor.Component {
<div style="text-align: right;"> <div style="text-align: right;">
<span style="display:inline-block; max-width: 250px; font-size:12px;" #error /> <span style="display:inline-block; max-width: 250px; font-size:12px;" #error />
<progress #progress style={"color:" + color + "; display: " + (show_progress ? "inline-block" : "none")} /> <progress #progress style={"color:" + color + "; display: " + (show_progress ? "inline-block" : "none")} />
{isInsecureConnection && hasOk ? <button .button #submit .outline>{translate('Continue')}</button> : ""}
{hasCancel || this.hasRetry ? <button .button #cancel .outline>{translate(this.hasRetry ? "OK" : "Cancel")}</button> : ""} {hasCancel || this.hasRetry ? <button .button #cancel .outline>{translate(this.hasRetry ? "OK" : "Cancel")}</button> : ""}
{this.hasSkip() ? <button .button #skip .outline>{translate('Skip')}</button> : ""} {this.hasSkip() ? <button .button #skip .outline>{translate('Skip')}</button> : ""}
{hasOk || this.hasRetry ? <button .button #submit>{translate(this.hasRetry ? "Retry" : "OK")}</button> : ""} {!isInsecureConnection && (hasOk || this.hasRetry) ? <button .button #submit>{translate(this.hasRetry ? "Retry" : "OK")}</button> : ""}
{hasLink ? <button .button #jumplink .outline>{translate('JumpLink')}</button> : ""} {hasLink ? <button .button #jumplink .outline>{translate('JumpLink')}</button> : ""}
{hasClose ? <button .button #cancel .outline>{translate('Close')}</button> : ""} {hasClose ? (isInsecureConnection ? <button .button #cancel>{translate('Disconnect')}</button> : <button .button #cancel .outline>{translate('Close')}</button>) : ""}
{this.getScreenshotButtons()} {this.getScreenshotButtons()}
</div> </div>
</div> </div>
@@ -193,6 +195,10 @@ class MsgboxComponent: Reactor.Component {
} }
function submit() { function submit() {
if (this.type.indexOf("insecure-connection") >= 0) {
this.cancel();
return;
}
var submit_btn = this.$(button#submit); var submit_btn = this.$(button#submit);
if (submit_btn) { if (submit_btn) {
if (submit_btn.state.disabled) return; if (submit_btn.state.disabled) return;
@@ -376,7 +382,11 @@ class MsgboxComponent: Reactor.Component {
var el = me.$(.outline-focus); var el = me.$(.outline-focus);
if (el) view.focus = el; if (el) view.focus = el;
else { else {
el = me.$(#submit); if (me.type.indexOf("insecure-connection") >= 0) {
el = me.$(#cancel);
} else {
el = me.$(#submit);
}
if (el) { if (el) {
view.focus = el; view.focus = el;
} }

View File

@@ -513,6 +513,7 @@ impl sciter::EventHandler for SciterSession {
fn is_rdp(); fn is_rdp();
fn login(String, String, String, bool); fn login(String, String, String, bool);
fn send2fa(String, bool); fn send2fa(String, bool);
fn continue_insecure_connection(bool);
fn get_enable_trusted_devices(); fn get_enable_trusted_devices();
fn new_rdp(); fn new_rdp();
fn send_mouse(i32, i32, i32, bool, bool, bool, bool); fn send_mouse(i32, i32, i32, bool, bool, bool, bool);

View File

@@ -1408,6 +1408,15 @@ impl<T: InvokeUiSession> Session<T> {
self.send(Data::Close); self.send(Data::Close);
} }
pub fn continue_insecure_connection(&self, continue_insecure: bool) {
let data = if continue_insecure {
Data::ContinueInsecureConnection
} else {
Data::RejectInsecureConnection
};
self.send(data);
}
fn try_auto_start_job_str(is_reconnected: bool, job_str: &str) -> Option<String> { fn try_auto_start_job_str(is_reconnected: bool, job_str: &str) -> Option<String> {
if is_reconnected { if is_reconnected {
let job_str = job_str.trim(); let job_str = job_str.trim();