preset password warning

This commit is contained in:
rustdesk
2024-03-16 11:52:30 +08:00
parent ccf5b0ef53
commit fe0de47805
5 changed files with 59 additions and 1 deletions

View File

@@ -2,7 +2,6 @@ lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("desk_tip", "Your desktop can be accessed with this ID and password."),
("outgoing_only_desk_tip", "This is a customized edition.\nYou can connect to other devices, but other devices cannot connect to your device."),
("connecting_status", "Connecting to the RustDesk network..."),
("not_ready_status", "Not ready. Please check your connection"),
("ID/Relay Server", "ID/Relay server"),
@@ -215,5 +214,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("wrong-2fa-code", "Can't verify the code. Check that code and local time settings are correct"),
("enter-2fa-title", "Two-factor authentication"),
("powered_by_me", "Powered by RustDesk"),
("outgoing_only_desk_tip", "This is a customized edition.\nYou can connect to other devices, but other devices cannot connect to your device."),
("preset_password_warning", "This software uses a default password. Anyone knowing this password can gain full control of your device. If you did not expect this, uninstall the software immediately."),
].iter().cloned().collect();
}

View File

@@ -588,5 +588,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Please select the session you want to connect to", ""),
("powered_by_me", ""),
("outgoing_only_desk_tip", ""),
("preset_password_warning", ""),
("Security Alert", ""),
].iter().cloned().collect();
}