mirror of
https://github.com/weyne85/rustdesk.git
synced 2025-10-29 17:00:05 +00:00
13
src/cli.rs
13
src/cli.rs
@@ -32,11 +32,14 @@ impl Session {
|
||||
password,
|
||||
lc: Default::default(),
|
||||
};
|
||||
session
|
||||
.lc
|
||||
.write()
|
||||
.unwrap()
|
||||
.initialize(id.to_owned(), ConnType::PORT_FORWARD, None);
|
||||
session.lc.write().unwrap().initialize(
|
||||
id.to_owned(),
|
||||
ConnType::PORT_FORWARD,
|
||||
None,
|
||||
false,
|
||||
None,
|
||||
None,
|
||||
);
|
||||
session
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1151,6 +1151,7 @@ pub struct LoginConfigHandler {
|
||||
pub mark_unsupported: Vec<CodecFormat>,
|
||||
pub selected_windows_session_id: Option<u32>,
|
||||
pub peer_info: Option<PeerInfo>,
|
||||
shared_password: Option<String>, // used to distinguish whether it is connected with a shared password
|
||||
}
|
||||
|
||||
impl Deref for LoginConfigHandler {
|
||||
@@ -1175,6 +1176,7 @@ impl LoginConfigHandler {
|
||||
switch_uuid: Option<String>,
|
||||
mut force_relay: bool,
|
||||
adapter_luid: Option<i64>,
|
||||
shared_password: Option<String>,
|
||||
) {
|
||||
let mut id = id;
|
||||
if id.contains("@") {
|
||||
@@ -1238,6 +1240,7 @@ impl LoginConfigHandler {
|
||||
self.switch_uuid = switch_uuid;
|
||||
self.adapter_luid = adapter_luid;
|
||||
self.selected_windows_session_id = None;
|
||||
self.shared_password = shared_password;
|
||||
}
|
||||
|
||||
/// Check if the client should auto login.
|
||||
@@ -1827,6 +1830,8 @@ impl LoginConfigHandler {
|
||||
platform: pi.platform.clone(),
|
||||
};
|
||||
let mut config = self.load_config();
|
||||
let connected_with_shared_password = self.is_connected_with_shared_password();
|
||||
let old_config_password = config.password.clone();
|
||||
config.info = serde;
|
||||
let password = self.password.clone();
|
||||
let password0 = config.password.clone();
|
||||
@@ -1859,15 +1864,17 @@ impl LoginConfigHandler {
|
||||
}
|
||||
#[cfg(feature = "flutter")]
|
||||
{
|
||||
// sync ab password with PeerConfig password
|
||||
let password = base64::encode(config.password.clone(), base64::Variant::Original);
|
||||
let evt: HashMap<&str, String> = HashMap::from([
|
||||
("name", "sync_peer_password_to_ab".to_string()),
|
||||
("id", self.id.clone()),
|
||||
("password", password),
|
||||
]);
|
||||
let evt = serde_json::ser::to_string(&evt).unwrap_or("".to_owned());
|
||||
crate::flutter::push_global_event(crate::flutter::APP_TYPE_MAIN, evt);
|
||||
if !connected_with_shared_password && remember && !config.password.is_empty() {
|
||||
// sync ab password with PeerConfig password
|
||||
let password = base64::encode(config.password.clone(), base64::Variant::Original);
|
||||
let evt: HashMap<&str, String> = HashMap::from([
|
||||
("name", "sync_peer_password_to_ab".to_string()),
|
||||
("id", self.id.clone()),
|
||||
("password", password),
|
||||
]);
|
||||
let evt = serde_json::ser::to_string(&evt).unwrap_or("".to_owned());
|
||||
crate::flutter::push_global_event(crate::flutter::APP_TYPE_MAIN, evt);
|
||||
}
|
||||
}
|
||||
if config.keyboard_mode.is_empty() {
|
||||
if is_keyboard_mode_supported(
|
||||
@@ -1887,12 +1894,27 @@ impl LoginConfigHandler {
|
||||
config.keyboard_mode = KeyboardMode::Legacy.to_string();
|
||||
}
|
||||
}
|
||||
// keep hash password unchanged if connected with shared password
|
||||
if connected_with_shared_password {
|
||||
config.password = old_config_password;
|
||||
}
|
||||
// no matter if change, for update file time
|
||||
self.save_config(config);
|
||||
self.supported_encoding = pi.encoding.clone().unwrap_or_default();
|
||||
log::info!("peer info supported_encoding:{:?}", self.supported_encoding);
|
||||
}
|
||||
|
||||
fn is_connected_with_shared_password(&self) -> bool {
|
||||
if let Some(shared_password) = self.shared_password.as_ref() {
|
||||
let mut hasher = Sha256::new();
|
||||
hasher.update(shared_password);
|
||||
hasher.update(&self.hash.salt);
|
||||
let res = hasher.finalize();
|
||||
return self.password.clone()[..] == res[..];
|
||||
}
|
||||
false
|
||||
}
|
||||
|
||||
pub fn get_remote_dir(&self) -> String {
|
||||
serde_json::from_str::<HashMap<String, String>>(&self.get_option("remote_dir"))
|
||||
.unwrap_or_default()
|
||||
@@ -2621,15 +2643,17 @@ pub async fn handle_hash(
|
||||
let ab = hbb_common::config::Ab::load();
|
||||
if !access_token.is_empty() && access_token == ab.access_token {
|
||||
let id = lc.read().unwrap().id.clone();
|
||||
if let Some(p) = ab
|
||||
.peers
|
||||
.iter()
|
||||
.find_map(|p| if p.id == id { Some(p) } else { None })
|
||||
{
|
||||
if let Ok(hash) = base64::decode(p.hash.clone(), base64::Variant::Original) {
|
||||
if !hash.is_empty() {
|
||||
password = hash;
|
||||
lc.write().unwrap().save_ab_password_to_recent = true;
|
||||
if let Some(ab) = ab.ab_entries.iter().find(|a| a.personal()) {
|
||||
if let Some(p) = ab
|
||||
.peers
|
||||
.iter()
|
||||
.find_map(|p| if p.id == id { Some(p) } else { None })
|
||||
{
|
||||
if let Ok(hash) = base64::decode(p.hash.clone(), base64::Variant::Original) {
|
||||
if !hash.is_empty() {
|
||||
password = hash;
|
||||
lc.write().unwrap().save_ab_password_to_recent = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1025,6 +1025,7 @@ pub fn session_add(
|
||||
switch_uuid: &str,
|
||||
force_relay: bool,
|
||||
password: String,
|
||||
is_shared_password: bool,
|
||||
) -> ResultType<FlutterSession> {
|
||||
let conn_type = if is_file_transfer {
|
||||
ConnType::FILE_TRANSFER
|
||||
@@ -1050,7 +1051,7 @@ pub fn session_add(
|
||||
LocalConfig::set_remote_id(&id);
|
||||
|
||||
let session: Session<FlutterHandler> = Session {
|
||||
password,
|
||||
password: password.clone(),
|
||||
server_keyboard_enabled: Arc::new(RwLock::new(true)),
|
||||
server_file_transfer_enabled: Arc::new(RwLock::new(true)),
|
||||
server_clipboard_enabled: Arc::new(RwLock::new(true)),
|
||||
@@ -1068,12 +1069,18 @@ pub fn session_add(
|
||||
#[cfg(not(feature = "gpucodec"))]
|
||||
let adapter_luid = None;
|
||||
|
||||
let shared_password = if is_shared_password {
|
||||
Some(password)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
session.lc.write().unwrap().initialize(
|
||||
id.to_owned(),
|
||||
conn_type,
|
||||
switch_uuid,
|
||||
force_relay,
|
||||
adapter_luid,
|
||||
shared_password,
|
||||
);
|
||||
|
||||
let session = Arc::new(session.clone());
|
||||
|
||||
@@ -122,6 +122,7 @@ pub fn session_add_sync(
|
||||
switch_uuid: String,
|
||||
force_relay: bool,
|
||||
password: String,
|
||||
is_shared_password: bool,
|
||||
) -> SyncReturn<String> {
|
||||
if let Err(e) = session_add(
|
||||
&session_id,
|
||||
@@ -132,6 +133,7 @@ pub fn session_add_sync(
|
||||
&switch_uuid,
|
||||
force_relay,
|
||||
password,
|
||||
is_shared_password,
|
||||
) {
|
||||
SyncReturn(format!("Failed to add session with id {}, {}", &id, e))
|
||||
} else {
|
||||
@@ -1018,14 +1020,6 @@ pub fn main_load_lan_peers_sync() -> SyncReturn<String> {
|
||||
return SyncReturn(serde_json::ser::to_string(&data).unwrap_or("".to_owned()));
|
||||
}
|
||||
|
||||
pub fn main_load_ab_sync() -> SyncReturn<String> {
|
||||
return SyncReturn(serde_json::to_string(&config::Ab::load()).unwrap_or_default());
|
||||
}
|
||||
|
||||
pub fn main_load_group_sync() -> SyncReturn<String> {
|
||||
return SyncReturn(serde_json::to_string(&config::Group::load()).unwrap_or_default());
|
||||
}
|
||||
|
||||
pub fn main_load_recent_peers_for_ab(filter: String) -> String {
|
||||
let id_filters = serde_json::from_str::<Vec<String>>(&filter).unwrap_or_default();
|
||||
let id_filters = if id_filters.is_empty() {
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "请选择您要连接的会话"),
|
||||
("powered_by_me", "由 RustDesk 提供支持"),
|
||||
("outgoing_only_desk_tip", "当前版本的软件是定制版本。\n您可以连接至其他设备,但是其他设备无法连接至您的设备。"),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", "添加共享地址簿"),
|
||||
("Update this address book", "更新此地址簿"),
|
||||
("Delete this address book", "删除此地址簿"),
|
||||
("Share this address book", "共享此地址簿"),
|
||||
("Are you sure you want to delete address book {}?", "确定要删除地址簿{}吗?"),
|
||||
("My address book", "我的地址簿"),
|
||||
("Personal", "个人的"),
|
||||
("Owner", "所有者"),
|
||||
("Set shared password", "设置共享密码"),
|
||||
("Exist in", "存在于"),
|
||||
("Read-only", "只读"),
|
||||
("Read/Write", "读写"),
|
||||
("Full Control", "完全控制"),
|
||||
("full_control_tip", "完全控制赋予其他人与地址簿所有者相同的权限。"),
|
||||
("share_warning_tip", "上述字段是共享的并且对其他人可见。"),
|
||||
("Only show existing", "只显示存在的"),
|
||||
("Everyone", "所有人"),
|
||||
("permission_priority_tip", "优先级:用户>组>所有人"),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "Vyberte relaci, ke které se chcete připojit"),
|
||||
("powered_by_me", "Poháněno společností RustDesk"),
|
||||
("outgoing_only_desk_tip", "Toto je přizpůsobená edice.\nMůžete se připojit k jiným zařízením, ale jiná zařízení se k vašemu zařízení připojit nemohou."),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "Bitte wählen Sie die Sitzung, mit der Sie sich verbinden möchten"),
|
||||
("powered_by_me", "Unterstützt von RustDesk"),
|
||||
("outgoing_only_desk_tip", "Dies ist eine benutzerdefinierte Ausgabe.\nSie können eine Verbindung zu anderen Geräten herstellen, aber andere Geräte können keine Verbindung zu Ihrem Gerät herstellen."),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -216,5 +216,8 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("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 customized edition comes with a preset password. Anyone knowing this password could gain full control of your device. If you did not expect this, uninstall the software immediately."),
|
||||
("full_control_tip", "Full Control gives others the same permissions as the address book owner."),
|
||||
("share_warning_tip", "The fields above are shared and visible to others."),
|
||||
("permission_priority_tip", "Priority: User > Group > Everyone")
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "Por favor, seleccione la sesión a la que se desea conectar"),
|
||||
("powered_by_me", ""),
|
||||
("outgoing_only_desk_tip", ""),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
828
src/lang/he.rs
828
src/lang/he.rs
@@ -1,218 +1,612 @@
|
||||
lazy_static::lazy_static! {
|
||||
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
[
|
||||
("desk_tip", "ניתן לגשת לשולחן העבודה שלך עם מזהה וסיסמה זו."),
|
||||
("outgoing_only_desk_tip", "זוהי מהדורה מותאמת אישית.\nניתן להתחבר למכשירים אחרים, אך מכשירים אחרים לא יכולים להתחבר אליך."),
|
||||
("connecting_status", "מתחבר לרשת RustDesk..."),
|
||||
("not_ready_status", "לא מוכן. בדוק את החיבור שלך"),
|
||||
("ID/Relay Server", "שרת מזהה/ריליי"),
|
||||
("id_change_tip", "מותרים רק תווים a-z, A-Z, 0-9 ו_ (קו תחתון). האות הראשונה חייבת להיות a-z, A-Z. אורך בין 6 ל-16."),
|
||||
("Slogan_tip", "נוצר בלב בעולם הזה הכאוטי!"),
|
||||
("Build Date", "תאריך בנייה"),
|
||||
("Audio Input", "קלט שמע"),
|
||||
("Hardware Codec", "קודק חומרה"),
|
||||
("ID Server", "שרת מזהה"),
|
||||
("Relay Server", "שרת ריליי"),
|
||||
("API Server", "שרת API"),
|
||||
("invalid_http", "חייב להתחיל עם http:// או https://"),
|
||||
("server_not_support", "עדיין לא נתמך על ידי השרת"),
|
||||
("Password Required", "נדרשת סיסמה"),
|
||||
("Wrong Password", "סיסמה שגויה"),
|
||||
("Connection Error", "שגיאת חיבור"),
|
||||
("Login Error", "שגיאת התחברות"),
|
||||
("Show Hidden Files", "הצג קבצים נסתרים"),
|
||||
("Refresh File", "רענן קובץ"),
|
||||
("Remote Computer", "מחשב מרוחק"),
|
||||
("Local Computer", "מחשב מקומי"),
|
||||
("Confirm Delete", "אשר מחיקה"),
|
||||
("Multi Select", "בחירה מרובה"),
|
||||
("Select All", "בחר הכל"),
|
||||
("Unselect All", "בטל בחירת הכל"),
|
||||
("Empty Directory", "תיקייה ריקה"),
|
||||
("Custom Image Quality", "איכות תמונה מותאמת אישית"),
|
||||
("Adjust Window", "התאם חלון"),
|
||||
("Insert Lock", "הוסף נעילה"),
|
||||
("Set Password", "הגדר סיסמה"),
|
||||
("OS Password", "סיסמת מערכת הפעלה"),
|
||||
("install_tip", "בגלל UAC, RustDesk לא יכול לפעול כראוי כצד מרוחק בחלק מהמקרים. כדי להימנע מ-UAC, אנא לחץ על הכפתור למטה כדי להתקין את RustDesk במערכת."),
|
||||
("config_acc", "כדי לשלוט מרחוק בשולחן העבודה שלך, עליך להעניק ל-RustDesk הרשאות \"נגישות\"."),
|
||||
("config_screen", "כדי לגשת מרחוק לשולחן העבודה שלך, עליך להעניק ל-RustDesk הרשאות \"הקלטת מסך\"."),
|
||||
("Installation Path", "נתיב התקנה"),
|
||||
("agreement_tip", "על ידי התחלת ההתקנה, אתה מקבל את הסכם הרישיון."),
|
||||
("Accept and Install", "קבל והתקן"),
|
||||
("not_close_tcp_tip", "אל תסגור חלון זה בזמן שאתה משתמש במנהרה"),
|
||||
("Remote Host", "מארח מרוחק"),
|
||||
("Remote Port", "פורט מרוחק"),
|
||||
("Local Port", "פורט מקומי"),
|
||||
("Local Address", "כתובת מקומית"),
|
||||
("Change Local Port", "שנה פורט מקומי"),
|
||||
("setup_server_tip", "לחיבור מהיר יותר, אנא הגדר שרת משלך"),
|
||||
("Enter Remote ID", "הזן מזהה מרוחק"),
|
||||
("Auto Login", "התחברות אוטומטית (תקפה רק אם הגדרת \"נעל לאחר סיום הסשן\")"),
|
||||
("Change Path", "שנה נתיב"),
|
||||
("Create Folder", "צור תיקייה"),
|
||||
("whitelist_tip", "רק IP ברשימה הלבנה יכול לגשת אלי"),
|
||||
("verification_tip", "קוד אימות נשלח לכתובת הדוא\"ל הרשומה, הזן את קוד האימות כדי להמשיך בהתחברות."),
|
||||
("whitelist_sep", "מופרד על ידי פסיק, נקודה פסיק, רווחים או שורה חדשה"),
|
||||
("Add Tag", "הוסף תג"),
|
||||
("Wrong credentials", "שם משתמש או סיסמה שגויים"),
|
||||
("Edit Tag", "ערוך תג"),
|
||||
("Forget Password", "שכחת סיסמה"),
|
||||
("Add to Favorites", "הוסף למועדפים"),
|
||||
("Remove from Favorites", "הסר מהמועדפים"),
|
||||
("Socks5 Proxy", "פרוקסי Socks5"),
|
||||
("install_daemon_tip", "לצורך הפעלה בעת הפעלת המחשב, עליך להתקין שירות מערכת."),
|
||||
("Are you sure to close the connection?", "האם אתה בטוח שברצונך לסגור את החיבור?"),
|
||||
("One-Finger Tap", "הקשה באצבע אחת"),
|
||||
("Left Mouse", "עכבר שמאלי"),
|
||||
("One-Long Tap", "הקשה ארוכה באצבע אחת"),
|
||||
("Two-Finger Tap", "הקשה בשתי אצבעות"),
|
||||
("Right Mouse", "עכבר ימני"),
|
||||
("One-Finger Move", "הזזה באצבע אחת"),
|
||||
("Double Tap & Move", "הקשה כפולה והזזה"),
|
||||
("Mouse Drag", "גרירת עכבר"),
|
||||
("Three-Finger vertically", "שלוש אצבעות אנכית"),
|
||||
("Mouse Wheel", "גלגלת עכבר"),
|
||||
("Two-Finger Move", "הזזה בשתי אצבעות"),
|
||||
("Canvas Move", "הזזת בד"),
|
||||
("Pinch to Zoom", "צביטה לזום"),
|
||||
("Canvas Zoom", "זום בד"),
|
||||
("Share Screen", "שיתוף מסך"),
|
||||
("Screen Capture", "לכידת מסך"),
|
||||
("Input Control", "בקרת קלט"),
|
||||
("Audio Capture", "לכידת שמע"),
|
||||
("File Connection", "חיבור קובץ"),
|
||||
("Screen Connection", "חיבור מסך"),
|
||||
("Open System Setting", "פתח הגדרת מערכת"),
|
||||
("android_input_permission_tip1", "כדי שמכשיר מרוחק יוכל לשלוט במכשיר האנדרואיד שלך באמצעות עכבר או מגע, עליך לאפשר ל-RustDesk להשתמש בשירות \"נגישות\"."),
|
||||
("android_input_permission_tip2", "אנא עבור לדף ההגדרות של המערכת הבא, מצא והכנס ל[שירותים מותקנים], הפעל את שירות [RustDesk Input]."),
|
||||
("android_new_connection_tip", "בקשת שליטה חדשה התקבלה, שרוצה לשלוט במכשירך הנוכחי."),
|
||||
("android_service_will_start_tip", "הפעלת \"לכידת מסך\" תתחיל אוטומטית את השירות, מאפשרת למכשירים אחרים לבקש חיבור למכשיר שלך."),
|
||||
("android_stop_service_tip", "סגירת השירות תסגור אוטומטית את כל החיבורים המוקמים."),
|
||||
("android_version_audio_tip", "גרסת האנדרואיד הנוכחית אינה תומכת בלכידת שמע, אנא שדרג לאנדרואיד 10 או גבוה יותר."),
|
||||
("android_start_service_tip", "הקש על [התחל שירות] או אפשר הרשאת [לכידת מסך] כדי להתחיל את שירות שיתוף המסך."),
|
||||
("android_permission_may_not_change_tip", "הרשאות עבור חיבורים שנוצרו עשויות לא להשתנות מייד עד להתחברות מחדש."),
|
||||
("doc_mac_permission", "https://rustdesk.com/docs/en/client/mac/#enable-permissions"),
|
||||
("Ignore Battery Optimizations", "התעלם מאופטימיזציות סוללה"),
|
||||
("android_open_battery_optimizations_tip", "אם ברצונך לבטל תכונה זו, אנא עבור לדף ההגדרות של יישום RustDesk הבא, מצא והכנס ל[סוללה], הסר את הסימון מ-[לא מוגבל]"),
|
||||
("remote_restarting_tip", "המכשיר המרוחק מתחיל מחדש, אנא סגור את תיבת ההודעה הזו והתחבר מחדש עם סיסמה קבועה לאחר זמן מה"),
|
||||
("Exit Fullscreen", "יציאה ממסך מלא"),
|
||||
("Mobile Actions", "פעולות ניידות"),
|
||||
("Select Monitor", "בחר מסך"),
|
||||
("Control Actions", "פעולות בקרה"),
|
||||
("Display Settings", "הגדרות תצוגה"),
|
||||
("Image Quality", "איכות תמונה"),
|
||||
("Scroll Style", "סגנון גלילה"),
|
||||
("Show Toolbar", "הצג סרגל כלים"),
|
||||
("Hide Toolbar", "הסתר סרגל כלים"),
|
||||
("Direct Connection", "חיבור ישיר"),
|
||||
("Relay Connection", "חיבור ריליי"),
|
||||
("Secure Connection", "חיבור מאובטח"),
|
||||
("Insecure Connection", "חיבור לא מאובטח"),
|
||||
("Dark Theme", "ערכת נושא כהה"),
|
||||
("Light Theme", "ערכת נושא בהירה"),
|
||||
("Follow System", "עקוב אחר המערכת"),
|
||||
("Unlock Security Settings", "פתח הגדרות אבטחה"),
|
||||
("Unlock Network Settings", "פתח הגדרות רשת"),
|
||||
("Direct IP Access", "גישה ישירה ל-IP"),
|
||||
("Audio Input Device", "מכשיר קלט שמע"),
|
||||
("Use IP Whitelisting", "השתמש ברשימת לבנה של IP"),
|
||||
("Pin Toolbar", "נעץ סרגל כלים"),
|
||||
("Unpin Toolbar", "הסר נעיצת סרגל כלים"),
|
||||
("elevated_foreground_window_tip", "החלון הנוכחי של שולחן העבודה המרוחק דורש הרשאה גבוהה יותר לפעולה, לכן אי אפשר להשתמש בעכבר ובמקלדת באופן זמני. תוכל לבקש מהמשתמש המרוחק למזער את החלון הנוכחי, או ללחוץ על כפתור ההגבהה בחלון ניהול החיבור. כדי להימנע מבעיה זו, מומלץ להתקין את התוכנה במכשיר המרוחק."),
|
||||
("Keyboard Settings", "הגדרות מקלדת"),
|
||||
("Full Access", "גישה מלאה"),
|
||||
("Screen Share", "שיתוף מסך"),
|
||||
("JumpLink", "הצג"),
|
||||
("Please Select the screen to be shared(Operate on the peer side).", "אנא בחר את המסך לשיתוף (פעולה בצד העמית)."),
|
||||
("One-time Password", "סיסמה חד-פעמית"),
|
||||
("hide_cm_tip", "אפשר הסתרה רק אם מקבלים סשנים דרך סיסמה ומשתמשים בסיסמה קבועה"),
|
||||
("wayland_experiment_tip", "תמיכה ב-Wayland נמצאת בשלב ניסיוני, אנא השתמש ב-X11 אם אתה זקוק לגישה לא מלווה."),
|
||||
("software_render_tip", "אם אתה משתמש בכרטיס גרפיקה של Nvidia תחת Linux וחלון המרחוק נסגר מיד לאחר החיבור, החלפה למנהל ההתקן הפתוח Nouveau ובחירה בשימוש בעיבוד תוכנה עשויה לעזור. נדרשת הפעלה מחדש של התוכנה."),
|
||||
("config_input", "כדי לשלוט בשולחן העבודה המרוחק באמצעות מקלדת, עליך להעניק ל-RustDesk הרשאות \"מעקב אחרי קלט\"."),
|
||||
("config_microphone", "כדי לדבר מרחוק, עליך להעניק ל-RustDesk הרשאות \"הקלטת שמע\"."),
|
||||
("request_elevation_tip", "ניתן גם לבקש הגבהה אם יש מישהו בצד המרוחק."),
|
||||
("Elevation Error", "שגיאת הגבהה"),
|
||||
("still_click_uac_tip", "עדיין דורש מהמשתמש המרוחק ללחוץ OK בחלון ה-UAC של הרצת RustDesk."),
|
||||
("Request Elevation", "בקש הגבהה"),
|
||||
("wait_accept_uac_tip", "אנא המתן למשתמש המרוחק לקבל את דיאלוג ה-UAC."),
|
||||
("Switch Sides", "החלף צדדים"),
|
||||
("Default View Style", "סגנון תצוגה ברירת מחדל"),
|
||||
("Default Scroll Style", "סגנון גלילה ברירת מחדל"),
|
||||
("Default Image Quality", "איכות תמונה ברירת מחדל"),
|
||||
("Default Codec", "קודק ברירת מחדל"),
|
||||
("Other Default Options", "אפשרויות ברירת מחדל אחרות"),
|
||||
("relay_hint_tip", "ייתכן שלא ניתן להתחבר ישירות; ניתן לנסות להתחבר דרך ריליי. בנוסף, אם ברצונך להשתמש בריליי בניסיון הראשון שלך, תוכל להוסיף את הסיומת \"/r\" למזהה או לבחור באפשרות \"התחבר תמיד דרך ריליי\" בכרטיס של הסשנים האחרונים אם קיים."),
|
||||
("RDP Settings", "הגדרות RDP"),
|
||||
("New Connection", "חיבור חדש"),
|
||||
("Your Device", "המכשיר שלך"),
|
||||
("empty_recent_tip", "אופס, אין סשנים אחרונים!\nהגיע הזמן לתכנן חדש."),
|
||||
("empty_favorite_tip", "עדיין אין עמיתים מועדפים?\nבוא נמצא מישהו להתחבר אליו ונוסיף אותו למועדפים!"),
|
||||
("empty_lan_tip", "אוי לא, נראה שעדיין לא גילינו עמיתים."),
|
||||
("empty_address_book_tip", "אוי ואבוי, נראה שכרגע אין עמיתים בספר הכתובות שלך."),
|
||||
("Empty Username", "שם משתמש ריק"),
|
||||
("Empty Password", "סיסמה ריקה"),
|
||||
("identical_file_tip", "קובץ זה זהה לקובץ של העמית."),
|
||||
("show_monitors_tip", "הצג מסכים בסרגל כלים"),
|
||||
("View Mode", "מצב תצוגה"),
|
||||
("login_linux_tip", "עליך להתחבר לחשבון Linux מרוחק כדי לאפשר פעילות שולחן עבודה X"),
|
||||
("verify_rustdesk_password_tip", "אמת סיסמת RustDesk"),
|
||||
("remember_account_tip", "זכור חשבון זה"),
|
||||
("os_account_desk_tip", "חשבון זה משמש להתחברות למערכת ההפעלה המרוחקת ולאפשר פעילות שולחן עבודה במצב לא מקוון"),
|
||||
("OS Account", "חשבון מערכת הפעלה"),
|
||||
("another_user_login_title_tip", "משתמש אחר כבר התחבר"),
|
||||
("another_user_login_text_tip", "נתק"),
|
||||
("xorg_not_found_title_tip", "Xorg לא נמצא"),
|
||||
("xorg_not_found_text_tip", "אנא התקן Xorg"),
|
||||
("no_desktop_title_tip", "אין שולחן עבודה זמין"),
|
||||
("no_desktop_text_tip", "אנא התקן שולחן עבודה GNOME"),
|
||||
("System Sound", "צליל מערכת"),
|
||||
("Copy Fingerprint", "העתק טביעת אצבע"),
|
||||
("no fingerprints", "אין טביעות אצבע"),
|
||||
("resolution_original_tip", "רזולוציה מקורית"),
|
||||
("resolution_fit_local_tip", "התאם לרזולוציה מקומית"),
|
||||
("resolution_custom_tip", "רזולוציה מותאמת אישית"),
|
||||
("Accept and Elevate", "קבל והגבה"),
|
||||
("accept_and_elevate_btn_tooltip", "קבל את החיבור והגבה הרשאות UAC."),
|
||||
("clipboard_wait_response_timeout_tip", "המתנה לתגובת העתקה הסתיימה בזמן."),
|
||||
("logout_tip", "האם אתה בטוח שברצונך להתנתק?"),
|
||||
("exceed_max_devices", "הגעת למספר המקסימלי של מכשירים שניתן לנהל."),
|
||||
("Change Password", "שנה סיסמה"),
|
||||
("Refresh Password", "רענן סיסמה"),
|
||||
("Grid View", "תצוגת רשת"),
|
||||
("List View", "תצוגת רשימה"),
|
||||
("Toggle Tags", "החלף תגיות"),
|
||||
("pull_ab_failed_tip", "נכשל ברענון ספר הכתובות"),
|
||||
("push_ab_failed_tip", "נכשל בסנכרון ספר הכתובות לשרת"),
|
||||
("synced_peer_readded_tip", "המכשירים שהיו נוכחים בסשנים האחרונים יסונכרנו בחזרה לספר הכתובות."),
|
||||
("Change Color", "שנה צבע"),
|
||||
("Primary Color", "צבע עיקרי"),
|
||||
("HSV Color", "צבע HSV"),
|
||||
("Installation Successful!", "ההתקנה הצליחה!"),
|
||||
("scam_title", "ייתכן שאתה נפלת להונאה!"),
|
||||
("scam_text1", "אם אתה בשיחת טלפון עם מישהו שאינך מכיר ואינך סומך עליו שביקש ממך להשתמש ב-RustDesk ולהתחיל את השירות, אל תמשיך ונתק מיד."),
|
||||
("scam_text2", "סביר להניח שמדובר בהונאה שמנסה לגנוב ממך כסף או מידע פרטי אחר."),
|
||||
("auto_disconnect_option_tip", "סגור באופן אוטומטי סשנים נכנסים במקרה של חוסר פעילות של המשתמש"),
|
||||
("Connection failed due to inactivity", "התנתקות אוטומטית בגלל חוסר פעילות"),
|
||||
("upgrade_rustdesk_server_pro_to_{}_tip", "אנא שדרג את RustDesk Server Pro לגרסה {} או חדשה יותר!"),
|
||||
("pull_group_failed_tip", "נכשל ברענון קבוצה"),
|
||||
("doc_fix_wayland", "https://rustdesk.com/docs/en/client/linux/#x11-required"),
|
||||
("display_is_plugged_out_msg", "המסך הופסק, החלף למסך הראשון."),
|
||||
("elevated_switch_display_msg", "מעבר למסך הראשי מכיוון שתמיכה במסכים מרובים אינה נתמכת במצב משתמש מוגבה."),
|
||||
("selinux_tip", "SELinux מופעל במכשיר שלך, מה שעלול למנוע מ-RustDesk לפעול כראוי כצד הנשלט."),
|
||||
("id_input_tip", "ניתן להזין מזהה, IP ישיר, או דומיין עם פורט (<domain>:<port>).\nאם ברצונך לגשת למכשיר בשרת אחר, אנא הוסף את כתובת השרת (<id>@<server_address>?key=<key_value>), לדוגמה,\n9123456234@192.168.16.1:21117?key=5Qbwsde3unUcJBtrx9ZkvUmwFNoExHzpryHuPUdqlWM=.\nאם ברצונך לגשת למכשיר בשרת ציבורי, אנא הזן \"<id>@public\", המפתח אינו נדרש לשרת ציבורי"),
|
||||
("privacy_mode_impl_mag_tip", "מצב 1"),
|
||||
("privacy_mode_impl_virtual_display_tip", "מצב 2"),
|
||||
("idd_not_support_under_win10_2004_tip", "נהג התצוגה העקיף אינו נתמך. נדרשת גרסת Windows 10, גרסה 2004 או חדשה יותר."),
|
||||
("switch_display_elevated_connections_tip", "מעבר למסך שאינו ראשי אינו נתמך במצב משתמש מוגבה כאשר יש מספר חיבורים. אנא נסה שוב לאחר התקנה אם ברצונך לשלוט במסכים מרובים."),
|
||||
("input_source_1_tip", "מקור קלט 1"),
|
||||
("input_source_2_tip", "מקור קלט 2"),
|
||||
("capture_display_elevated_connections_tip", "לכידת מסכים מרובים אינה נתמכת במצב משתמש מוגבה. אנא נסה שוב לאחר התקנה אם ברצונך לשלוט במסכים מרובים."),
|
||||
("swap-left-right-mouse", "החלף בין כפתור העכבר השמאלי לימני"),
|
||||
("2FA code", "קוד אימות דו-שלבי"),
|
||||
("enable-2fa-title", "הפעל אימות דו-שלבי"),
|
||||
("enable-2fa-desc", "אנא הגדר כעת את האפליקציה שלך לאימות. תוכל להשתמש באפליקציית אימות כגון Authy, Microsoft או Google Authenticator בטלפון או במחשב שלך.\n\nסרוק את קוד ה-QR עם האפליקציה שלך והזן את הקוד שהאפליקציה מציגה כדי להפעיל את אימות הדו-שלבי."),
|
||||
("wrong-2fa-code", "לא ניתן לאמת את הקוד. בדוק שהקוד והגדרות הזמן המקומיות נכונות"),
|
||||
("enter-2fa-title", "אימות דו-שלבי"),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
[
|
||||
("Status", ""),
|
||||
("Your Desktop", ""),
|
||||
("desk_tip", "ניתן לגשת לשולחן העבודה שלך עם מזהה וסיסמה זו."),
|
||||
("Password", ""),
|
||||
("Ready", ""),
|
||||
("Established", ""),
|
||||
("connecting_status", "מתחבר לרשת RustDesk..."),
|
||||
("Enable service", ""),
|
||||
("Start service", ""),
|
||||
("Service is running", ""),
|
||||
("Service is not running", ""),
|
||||
("not_ready_status", "לא מוכן. בדוק את החיבור שלך"),
|
||||
("Control Remote Desktop", ""),
|
||||
("Transfer file", ""),
|
||||
("Connect", ""),
|
||||
("Recent sessions", ""),
|
||||
("Address book", ""),
|
||||
("Confirmation", ""),
|
||||
("TCP tunneling", ""),
|
||||
("Remove", ""),
|
||||
("Refresh random password", ""),
|
||||
("Set your own password", ""),
|
||||
("Enable keyboard/mouse", ""),
|
||||
("Enable clipboard", ""),
|
||||
("Enable file transfer", ""),
|
||||
("Enable TCP tunneling", ""),
|
||||
("IP Whitelisting", ""),
|
||||
("ID/Relay Server", "שרת מזהה/ריליי"),
|
||||
("Import server config", ""),
|
||||
("Export Server Config", ""),
|
||||
("Import server configuration successfully", ""),
|
||||
("Export server configuration successfully", ""),
|
||||
("Invalid server configuration", ""),
|
||||
("Clipboard is empty", ""),
|
||||
("Stop service", ""),
|
||||
("Change ID", ""),
|
||||
("Your new ID", ""),
|
||||
("length %min% to %max%", ""),
|
||||
("starts with a letter", ""),
|
||||
("allowed characters", ""),
|
||||
("id_change_tip", "מותרים רק תווים a-z, A-Z, 0-9 ו_ (קו תחתון). האות הראשונה חייבת להיות a-z, A-Z. אורך בין 6 ל-16."),
|
||||
("Website", ""),
|
||||
("About", ""),
|
||||
("Slogan_tip", "נוצר בלב בעולם הזה הכאוטי!"),
|
||||
("Privacy Statement", ""),
|
||||
("Mute", ""),
|
||||
("Build Date", "תאריך בנייה"),
|
||||
("Version", ""),
|
||||
("Home", ""),
|
||||
("Audio Input", "קלט שמע"),
|
||||
("Enhancements", ""),
|
||||
("Hardware Codec", "קודק חומרה"),
|
||||
("Adaptive bitrate", ""),
|
||||
("ID Server", "שרת מזהה"),
|
||||
("Relay Server", "שרת ריליי"),
|
||||
("API Server", "שרת API"),
|
||||
("invalid_http", "חייב להתחיל עם http:// או https://"),
|
||||
("Invalid IP", ""),
|
||||
("Invalid format", ""),
|
||||
("server_not_support", "עדיין לא נתמך על ידי השרת"),
|
||||
("Not available", ""),
|
||||
("Too frequent", ""),
|
||||
("Cancel", ""),
|
||||
("Skip", ""),
|
||||
("Close", ""),
|
||||
("Retry", ""),
|
||||
("OK", ""),
|
||||
("Password Required", "נדרשת סיסמה"),
|
||||
("Please enter your password", ""),
|
||||
("Remember password", ""),
|
||||
("Wrong Password", "סיסמה שגויה"),
|
||||
("Do you want to enter again?", ""),
|
||||
("Connection Error", "שגיאת חיבור"),
|
||||
("Error", ""),
|
||||
("Reset by the peer", ""),
|
||||
("Connecting...", ""),
|
||||
("Connection in progress. Please wait.", ""),
|
||||
("Please try 1 minute later", ""),
|
||||
("Login Error", "שגיאת התחברות"),
|
||||
("Successful", ""),
|
||||
("Connected, waiting for image...", ""),
|
||||
("Name", ""),
|
||||
("Type", ""),
|
||||
("Modified", ""),
|
||||
("Size", ""),
|
||||
("Show Hidden Files", "הצג קבצים נסתרים"),
|
||||
("Receive", ""),
|
||||
("Send", ""),
|
||||
("Refresh File", "רענן קובץ"),
|
||||
("Local", ""),
|
||||
("Remote", ""),
|
||||
("Remote Computer", "מחשב מרוחק"),
|
||||
("Local Computer", "מחשב מקומי"),
|
||||
("Confirm Delete", "אשר מחיקה"),
|
||||
("Delete", ""),
|
||||
("Properties", ""),
|
||||
("Multi Select", "בחירה מרובה"),
|
||||
("Select All", "בחר הכל"),
|
||||
("Unselect All", "בטל בחירת הכל"),
|
||||
("Empty Directory", "תיקייה ריקה"),
|
||||
("Not an empty directory", ""),
|
||||
("Are you sure you want to delete this file?", ""),
|
||||
("Are you sure you want to delete this empty directory?", ""),
|
||||
("Are you sure you want to delete the file of this directory?", ""),
|
||||
("Do this for all conflicts", ""),
|
||||
("This is irreversible!", ""),
|
||||
("Deleting", ""),
|
||||
("files", ""),
|
||||
("Waiting", ""),
|
||||
("Finished", ""),
|
||||
("Speed", ""),
|
||||
("Custom Image Quality", "איכות תמונה מותאמת אישית"),
|
||||
("Privacy mode", ""),
|
||||
("Block user input", ""),
|
||||
("Unblock user input", ""),
|
||||
("Adjust Window", "התאם חלון"),
|
||||
("Original", ""),
|
||||
("Shrink", ""),
|
||||
("Stretch", ""),
|
||||
("Scrollbar", ""),
|
||||
("ScrollAuto", ""),
|
||||
("Good image quality", ""),
|
||||
("Balanced", ""),
|
||||
("Optimize reaction time", ""),
|
||||
("Custom", ""),
|
||||
("Show remote cursor", ""),
|
||||
("Show quality monitor", ""),
|
||||
("Disable clipboard", ""),
|
||||
("Lock after session end", ""),
|
||||
("Insert", ""),
|
||||
("Insert Lock", "הוסף נעילה"),
|
||||
("Refresh", ""),
|
||||
("ID does not exist", ""),
|
||||
("Failed to connect to rendezvous server", ""),
|
||||
("Please try later", ""),
|
||||
("Remote desktop is offline", ""),
|
||||
("Key mismatch", ""),
|
||||
("Timeout", ""),
|
||||
("Failed to connect to relay server", ""),
|
||||
("Failed to connect via rendezvous server", ""),
|
||||
("Failed to connect via relay server", ""),
|
||||
("Failed to make direct connection to remote desktop", ""),
|
||||
("Set Password", "הגדר סיסמה"),
|
||||
("OS Password", "סיסמת מערכת הפעלה"),
|
||||
("install_tip", "בגלל UAC, RustDesk לא יכול לפעול כראוי כצד מרוחק בחלק מהמקרים. כדי להימנע מ-UAC, אנא לחץ על הכפתור למטה כדי להתקין את RustDesk במערכת."),
|
||||
("Click to upgrade", ""),
|
||||
("Click to download", ""),
|
||||
("Click to update", ""),
|
||||
("Configure", ""),
|
||||
("config_acc", "כדי לשלוט מרחוק בשולחן העבודה שלך, עליך להעניק ל-RustDesk הרשאות \"נגישות\"."),
|
||||
("config_screen", "כדי לגשת מרחוק לשולחן העבודה שלך, עליך להעניק ל-RustDesk הרשאות \"הקלטת מסך\"."),
|
||||
("Installing ...", ""),
|
||||
("Install", ""),
|
||||
("Installation", ""),
|
||||
("Installation Path", "נתיב התקנה"),
|
||||
("Create start menu shortcuts", ""),
|
||||
("Create desktop icon", ""),
|
||||
("agreement_tip", "על ידי התחלת ההתקנה, אתה מקבל את הסכם הרישיון."),
|
||||
("Accept and Install", "קבל והתקן"),
|
||||
("End-user license agreement", ""),
|
||||
("Generating ...", ""),
|
||||
("Your installation is lower version.", ""),
|
||||
("not_close_tcp_tip", "אל תסגור חלון זה בזמן שאתה משתמש במנהרה"),
|
||||
("Listening ...", ""),
|
||||
("Remote Host", "מארח מרוחק"),
|
||||
("Remote Port", "פורט מרוחק"),
|
||||
("Action", ""),
|
||||
("Add", ""),
|
||||
("Local Port", "פורט מקומי"),
|
||||
("Local Address", "כתובת מקומית"),
|
||||
("Change Local Port", "שנה פורט מקומי"),
|
||||
("setup_server_tip", "לחיבור מהיר יותר, אנא הגדר שרת משלך"),
|
||||
("Too short, at least 6 characters.", ""),
|
||||
("The confirmation is not identical.", ""),
|
||||
("Permissions", ""),
|
||||
("Accept", ""),
|
||||
("Dismiss", ""),
|
||||
("Disconnect", ""),
|
||||
("Enable file copy and paste", ""),
|
||||
("Connected", ""),
|
||||
("Direct and encrypted connection", ""),
|
||||
("Relayed and encrypted connection", ""),
|
||||
("Direct and unencrypted connection", ""),
|
||||
("Relayed and unencrypted connection", ""),
|
||||
("Enter Remote ID", "הזן מזהה מרוחק"),
|
||||
("Enter your password", ""),
|
||||
("Logging in...", ""),
|
||||
("Enable RDP session sharing", ""),
|
||||
("Auto Login", "התחברות אוטומטית (תקפה רק אם הגדרת \"נעל לאחר סיום הסשן\")"),
|
||||
("Enable direct IP access", ""),
|
||||
("Rename", ""),
|
||||
("Space", ""),
|
||||
("Create desktop shortcut", ""),
|
||||
("Change Path", "שנה נתיב"),
|
||||
("Create Folder", "צור תיקייה"),
|
||||
("Please enter the folder name", ""),
|
||||
("Fix it", ""),
|
||||
("Warning", ""),
|
||||
("Login screen using Wayland is not supported", ""),
|
||||
("Reboot required", ""),
|
||||
("Unsupported display server", ""),
|
||||
("x11 expected", ""),
|
||||
("Port", ""),
|
||||
("Settings", ""),
|
||||
("Username", ""),
|
||||
("Invalid port", ""),
|
||||
("Closed manually by the peer", ""),
|
||||
("Enable remote configuration modification", ""),
|
||||
("Run without install", ""),
|
||||
("Connect via relay", ""),
|
||||
("Always connect via relay", ""),
|
||||
("whitelist_tip", "רק IP ברשימה הלבנה יכול לגשת אלי"),
|
||||
("Login", ""),
|
||||
("Verify", ""),
|
||||
("Remember me", ""),
|
||||
("Trust this device", ""),
|
||||
("Verification code", ""),
|
||||
("verification_tip", "קוד אימות נשלח לכתובת הדוא\"ל הרשומה, הזן את קוד האימות כדי להמשיך בהתחברות."),
|
||||
("Logout", ""),
|
||||
("Tags", ""),
|
||||
("Search ID", ""),
|
||||
("whitelist_sep", "מופרד על ידי פסיק, נקודה פסיק, רווחים או שורה חדשה"),
|
||||
("Add ID", ""),
|
||||
("Add Tag", "הוסף תג"),
|
||||
("Unselect all tags", ""),
|
||||
("Network error", ""),
|
||||
("Username missed", ""),
|
||||
("Password missed", ""),
|
||||
("Wrong credentials", "שם משתמש או סיסמה שגויים"),
|
||||
("The verification code is incorrect or has expired", ""),
|
||||
("Edit Tag", "ערוך תג"),
|
||||
("Forget Password", "שכחת סיסמה"),
|
||||
("Favorites", ""),
|
||||
("Add to Favorites", "הוסף למועדפים"),
|
||||
("Remove from Favorites", "הסר מהמועדפים"),
|
||||
("Empty", ""),
|
||||
("Invalid folder name", ""),
|
||||
("Socks5 Proxy", "פרוקסי Socks5"),
|
||||
("Hostname", ""),
|
||||
("Discovered", ""),
|
||||
("install_daemon_tip", "לצורך הפעלה בעת הפעלת המחשב, עליך להתקין שירות מערכת."),
|
||||
("Remote ID", ""),
|
||||
("Paste", ""),
|
||||
("Paste here?", ""),
|
||||
("Are you sure to close the connection?", "האם אתה בטוח שברצונך לסגור את החיבור?"),
|
||||
("Download new version", ""),
|
||||
("Touch mode", ""),
|
||||
("Mouse mode", ""),
|
||||
("One-Finger Tap", "הקשה באצבע אחת"),
|
||||
("Left Mouse", "עכבר שמאלי"),
|
||||
("One-Long Tap", "הקשה ארוכה באצבע אחת"),
|
||||
("Two-Finger Tap", "הקשה בשתי אצבעות"),
|
||||
("Right Mouse", "עכבר ימני"),
|
||||
("One-Finger Move", "הזזה באצבע אחת"),
|
||||
("Double Tap & Move", "הקשה כפולה והזזה"),
|
||||
("Mouse Drag", "גרירת עכבר"),
|
||||
("Three-Finger vertically", "שלוש אצבעות אנכית"),
|
||||
("Mouse Wheel", "גלגלת עכבר"),
|
||||
("Two-Finger Move", "הזזה בשתי אצבעות"),
|
||||
("Canvas Move", "הזזת בד"),
|
||||
("Pinch to Zoom", "צביטה לזום"),
|
||||
("Canvas Zoom", "זום בד"),
|
||||
("Reset canvas", ""),
|
||||
("No permission of file transfer", ""),
|
||||
("Note", ""),
|
||||
("Connection", ""),
|
||||
("Share Screen", "שיתוף מסך"),
|
||||
("Chat", ""),
|
||||
("Total", ""),
|
||||
("items", ""),
|
||||
("Selected", ""),
|
||||
("Screen Capture", "לכידת מסך"),
|
||||
("Input Control", "בקרת קלט"),
|
||||
("Audio Capture", "לכידת שמע"),
|
||||
("File Connection", "חיבור קובץ"),
|
||||
("Screen Connection", "חיבור מסך"),
|
||||
("Do you accept?", ""),
|
||||
("Open System Setting", "פתח הגדרת מערכת"),
|
||||
("How to get Android input permission?", ""),
|
||||
("android_input_permission_tip1", "כדי שמכשיר מרוחק יוכל לשלוט במכשיר האנדרואיד שלך באמצעות עכבר או מגע, עליך לאפשר ל-RustDesk להשתמש בשירות \"נגישות\"."),
|
||||
("android_input_permission_tip2", "אנא עבור לדף ההגדרות של המערכת הבא, מצא והכנס ל[שירותים מותקנים], הפעל את שירות [RustDesk Input]."),
|
||||
("android_new_connection_tip", "בקשת שליטה חדשה התקבלה, שרוצה לשלוט במכשירך הנוכחי."),
|
||||
("android_service_will_start_tip", "הפעלת \"לכידת מסך\" תתחיל אוטומטית את השירות, מאפשרת למכשירים אחרים לבקש חיבור למכשיר שלך."),
|
||||
("android_stop_service_tip", "סגירת השירות תסגור אוטומטית את כל החיבורים המוקמים."),
|
||||
("android_version_audio_tip", "גרסת האנדרואיד הנוכחית אינה תומכת בלכידת שמע, אנא שדרג לאנדרואיד 10 או גבוה יותר."),
|
||||
("android_start_service_tip", "הקש על [התחל שירות] או אפשר הרשאת [לכידת מסך] כדי להתחיל את שירות שיתוף המסך."),
|
||||
("android_permission_may_not_change_tip", "הרשאות עבור חיבורים שנוצרו עשויות לא להשתנות מייד עד להתחברות מחדש."),
|
||||
("Account", ""),
|
||||
("Overwrite", ""),
|
||||
("This file exists, skip or overwrite this file?", ""),
|
||||
("Quit", ""),
|
||||
("Help", ""),
|
||||
("Failed", ""),
|
||||
("Succeeded", ""),
|
||||
("Someone turns on privacy mode, exit", ""),
|
||||
("Unsupported", ""),
|
||||
("Peer denied", ""),
|
||||
("Please install plugins", ""),
|
||||
("Peer exit", ""),
|
||||
("Failed to turn off", ""),
|
||||
("Turned off", ""),
|
||||
("Language", ""),
|
||||
("Keep RustDesk background service", ""),
|
||||
("Ignore Battery Optimizations", "התעלם מאופטימיזציות סוללה"),
|
||||
("android_open_battery_optimizations_tip", "אם ברצונך לבטל תכונה זו, אנא עבור לדף ההגדרות של יישום RustDesk הבא, מצא והכנס ל[סוללה], הסר את הסימון מ-[לא מוגבל]"),
|
||||
("Start on boot", ""),
|
||||
("Start the screen sharing service on boot, requires special permissions", ""),
|
||||
("Connection not allowed", ""),
|
||||
("Legacy mode", ""),
|
||||
("Map mode", ""),
|
||||
("Translate mode", ""),
|
||||
("Use permanent password", ""),
|
||||
("Use both passwords", ""),
|
||||
("Set permanent password", ""),
|
||||
("Enable remote restart", ""),
|
||||
("Restart remote device", ""),
|
||||
("Are you sure you want to restart", ""),
|
||||
("Restarting remote device", ""),
|
||||
("remote_restarting_tip", "המכשיר המרוחק מתחיל מחדש, אנא סגור את תיבת ההודעה הזו והתחבר מחדש עם סיסמה קבועה לאחר זמן מה"),
|
||||
("Copied", ""),
|
||||
("Exit Fullscreen", "יציאה ממסך מלא"),
|
||||
("Fullscreen", ""),
|
||||
("Mobile Actions", "פעולות ניידות"),
|
||||
("Select Monitor", "בחר מסך"),
|
||||
("Control Actions", "פעולות בקרה"),
|
||||
("Display Settings", "הגדרות תצוגה"),
|
||||
("Ratio", ""),
|
||||
("Image Quality", "איכות תמונה"),
|
||||
("Scroll Style", "סגנון גלילה"),
|
||||
("Show Toolbar", "הצג סרגל כלים"),
|
||||
("Hide Toolbar", "הסתר סרגל כלים"),
|
||||
("Direct Connection", "חיבור ישיר"),
|
||||
("Relay Connection", "חיבור ריליי"),
|
||||
("Secure Connection", "חיבור מאובטח"),
|
||||
("Insecure Connection", "חיבור לא מאובטח"),
|
||||
("Scale original", ""),
|
||||
("Scale adaptive", ""),
|
||||
("General", ""),
|
||||
("Security", ""),
|
||||
("Theme", ""),
|
||||
("Dark Theme", "ערכת נושא כהה"),
|
||||
("Light Theme", "ערכת נושא בהירה"),
|
||||
("Dark", ""),
|
||||
("Light", ""),
|
||||
("Follow System", "עקוב אחר המערכת"),
|
||||
("Enable hardware codec", ""),
|
||||
("Unlock Security Settings", "פתח הגדרות אבטחה"),
|
||||
("Enable audio", ""),
|
||||
("Unlock Network Settings", "פתח הגדרות רשת"),
|
||||
("Server", ""),
|
||||
("Direct IP Access", "גישה ישירה ל-IP"),
|
||||
("Proxy", ""),
|
||||
("Apply", ""),
|
||||
("Disconnect all devices?", ""),
|
||||
("Clear", ""),
|
||||
("Audio Input Device", "מכשיר קלט שמע"),
|
||||
("Use IP Whitelisting", "השתמש ברשימת לבנה של IP"),
|
||||
("Network", ""),
|
||||
("Pin Toolbar", "נעץ סרגל כלים"),
|
||||
("Unpin Toolbar", "הסר נעיצת סרגל כלים"),
|
||||
("Recording", ""),
|
||||
("Directory", ""),
|
||||
("Automatically record incoming sessions", ""),
|
||||
("Change", ""),
|
||||
("Start session recording", ""),
|
||||
("Stop session recording", ""),
|
||||
("Enable recording session", ""),
|
||||
("Enable LAN discovery", ""),
|
||||
("Deny LAN discovery", ""),
|
||||
("Write a message", ""),
|
||||
("Prompt", ""),
|
||||
("Please wait for confirmation of UAC...", ""),
|
||||
("elevated_foreground_window_tip", "החלון הנוכחי של שולחן העבודה המרוחק דורש הרשאה גבוהה יותר לפעולה, לכן אי אפשר להשתמש בעכבר ובמקלדת באופן זמני. תוכל לבקש מהמשתמש המרוחק למזער את החלון הנוכחי, או ללחוץ על כפתור ההגבהה בחלון ניהול החיבור. כדי להימנע מבעיה זו, מומלץ להתקין את התוכנה במכשיר המרוחק."),
|
||||
("Disconnected", ""),
|
||||
("Other", ""),
|
||||
("Confirm before closing multiple tabs", ""),
|
||||
("Keyboard Settings", "הגדרות מקלדת"),
|
||||
("Full Access", "גישה מלאה"),
|
||||
("Screen Share", "שיתוף מסך"),
|
||||
("Wayland requires Ubuntu 21.04 or higher version.", ""),
|
||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", ""),
|
||||
("JumpLink", "הצג"),
|
||||
("Please Select the screen to be shared(Operate on the peer side).", "אנא בחר את המסך לשיתוף (פעולה בצד העמית)."),
|
||||
("Show RustDesk", ""),
|
||||
("This PC", ""),
|
||||
("or", ""),
|
||||
("Continue with", ""),
|
||||
("Elevate", ""),
|
||||
("Zoom cursor", ""),
|
||||
("Accept sessions via password", ""),
|
||||
("Accept sessions via click", ""),
|
||||
("Accept sessions via both", ""),
|
||||
("Please wait for the remote side to accept your session request...", ""),
|
||||
("One-time Password", "סיסמה חד-פעמית"),
|
||||
("Use one-time password", ""),
|
||||
("One-time password length", ""),
|
||||
("Request access to your device", ""),
|
||||
("Hide connection management window", ""),
|
||||
("hide_cm_tip", "אפשר הסתרה רק אם מקבלים סשנים דרך סיסמה ומשתמשים בסיסמה קבועה"),
|
||||
("wayland_experiment_tip", "תמיכה ב-Wayland נמצאת בשלב ניסיוני, אנא השתמש ב-X11 אם אתה זקוק לגישה לא מלווה."),
|
||||
("Right click to select tabs", ""),
|
||||
("Skipped", ""),
|
||||
("Add to address book", ""),
|
||||
("Group", ""),
|
||||
("Search", ""),
|
||||
("Closed manually by web console", ""),
|
||||
("Local keyboard type", ""),
|
||||
("Select local keyboard type", ""),
|
||||
("software_render_tip", "אם אתה משתמש בכרטיס גרפיקה של Nvidia תחת Linux וחלון המרחוק נסגר מיד לאחר החיבור, החלפה למנהל ההתקן הפתוח Nouveau ובחירה בשימוש בעיבוד תוכנה עשויה לעזור. נדרשת הפעלה מחדש של התוכנה."),
|
||||
("Always use software rendering", ""),
|
||||
("config_input", "כדי לשלוט בשולחן העבודה המרוחק באמצעות מקלדת, עליך להעניק ל-RustDesk הרשאות \"מעקב אחרי קלט\"."),
|
||||
("config_microphone", "כדי לדבר מרחוק, עליך להעניק ל-RustDesk הרשאות \"הקלטת שמע\"."),
|
||||
("request_elevation_tip", "ניתן גם לבקש הגבהה אם יש מישהו בצד המרוחק."),
|
||||
("Wait", ""),
|
||||
("Elevation Error", "שגיאת הגבהה"),
|
||||
("Ask the remote user for authentication", ""),
|
||||
("Choose this if the remote account is administrator", ""),
|
||||
("Transmit the username and password of administrator", ""),
|
||||
("still_click_uac_tip", "עדיין דורש מהמשתמש המרוחק ללחוץ OK בחלון ה-UAC של הרצת RustDesk."),
|
||||
("Request Elevation", "בקש הגבהה"),
|
||||
("wait_accept_uac_tip", "אנא המתן למשתמש המרוחק לקבל את דיאלוג ה-UAC."),
|
||||
("Elevate successfully", ""),
|
||||
("uppercase", ""),
|
||||
("lowercase", ""),
|
||||
("digit", ""),
|
||||
("special character", ""),
|
||||
("length>=8", ""),
|
||||
("Weak", ""),
|
||||
("Medium", ""),
|
||||
("Strong", ""),
|
||||
("Switch Sides", "החלף צדדים"),
|
||||
("Please confirm if you want to share your desktop?", ""),
|
||||
("Display", ""),
|
||||
("Default View Style", "סגנון תצוגה ברירת מחדל"),
|
||||
("Default Scroll Style", "סגנון גלילה ברירת מחדל"),
|
||||
("Default Image Quality", "איכות תמונה ברירת מחדל"),
|
||||
("Default Codec", "קודק ברירת מחדל"),
|
||||
("Bitrate", ""),
|
||||
("FPS", ""),
|
||||
("Auto", ""),
|
||||
("Other Default Options", "אפשרויות ברירת מחדל אחרות"),
|
||||
("Voice call", ""),
|
||||
("Text chat", ""),
|
||||
("Stop voice call", ""),
|
||||
("relay_hint_tip", "ייתכן שלא ניתן להתחבר ישירות; ניתן לנסות להתחבר דרך ריליי. בנוסף, אם ברצונך להשתמש בריליי בניסיון הראשון שלך, תוכל להוסיף את הסיומת \"/r\" למזהה או לבחור באפשרות \"התחבר תמיד דרך ריליי\" בכרטיס של הסשנים האחרונים אם קיים."),
|
||||
("Reconnect", ""),
|
||||
("Codec", ""),
|
||||
("Resolution", ""),
|
||||
("No transfers in progress", ""),
|
||||
("Set one-time password length", ""),
|
||||
("RDP Settings", "הגדרות RDP"),
|
||||
("Sort by", ""),
|
||||
("New Connection", "חיבור חדש"),
|
||||
("Restore", ""),
|
||||
("Minimize", ""),
|
||||
("Maximize", ""),
|
||||
("Your Device", "המכשיר שלך"),
|
||||
("empty_recent_tip", "אופס, אין סשנים אחרונים!\nהגיע הזמן לתכנן חדש."),
|
||||
("empty_favorite_tip", "עדיין אין עמיתים מועדפים?\nבוא נמצא מישהו להתחבר אליו ונוסיף אותו למועדפים!"),
|
||||
("empty_lan_tip", "אוי לא, נראה שעדיין לא גילינו עמיתים."),
|
||||
("empty_address_book_tip", "אוי ואבוי, נראה שכרגע אין עמיתים בספר הכתובות שלך."),
|
||||
("eg: admin", ""),
|
||||
("Empty Username", "שם משתמש ריק"),
|
||||
("Empty Password", "סיסמה ריקה"),
|
||||
("Me", ""),
|
||||
("identical_file_tip", "קובץ זה זהה לקובץ של העמית."),
|
||||
("show_monitors_tip", "הצג מסכים בסרגל כלים"),
|
||||
("View Mode", "מצב תצוגה"),
|
||||
("login_linux_tip", "עליך להתחבר לחשבון Linux מרוחק כדי לאפשר פעילות שולחן עבודה X"),
|
||||
("verify_rustdesk_password_tip", "אמת סיסמת RustDesk"),
|
||||
("remember_account_tip", "זכור חשבון זה"),
|
||||
("os_account_desk_tip", "חשבון זה משמש להתחברות למערכת ההפעלה המרוחקת ולאפשר פעילות שולחן עבודה במצב לא מקוון"),
|
||||
("OS Account", "חשבון מערכת הפעלה"),
|
||||
("another_user_login_title_tip", "משתמש אחר כבר התחבר"),
|
||||
("another_user_login_text_tip", "נתק"),
|
||||
("xorg_not_found_title_tip", "Xorg לא נמצא"),
|
||||
("xorg_not_found_text_tip", "אנא התקן Xorg"),
|
||||
("no_desktop_title_tip", "אין שולחן עבודה זמין"),
|
||||
("no_desktop_text_tip", "אנא התקן שולחן עבודה GNOME"),
|
||||
("No need to elevate", ""),
|
||||
("System Sound", "צליל מערכת"),
|
||||
("Default", ""),
|
||||
("New RDP", ""),
|
||||
("Fingerprint", ""),
|
||||
("Copy Fingerprint", "העתק טביעת אצבע"),
|
||||
("no fingerprints", "אין טביעות אצבע"),
|
||||
("Select a peer", ""),
|
||||
("Select peers", ""),
|
||||
("Plugins", ""),
|
||||
("Uninstall", ""),
|
||||
("Update", ""),
|
||||
("Enable", ""),
|
||||
("Disable", ""),
|
||||
("Options", ""),
|
||||
("resolution_original_tip", "רזולוציה מקורית"),
|
||||
("resolution_fit_local_tip", "התאם לרזולוציה מקומית"),
|
||||
("resolution_custom_tip", "רזולוציה מותאמת אישית"),
|
||||
("Collapse toolbar", ""),
|
||||
("Accept and Elevate", "קבל והגבה"),
|
||||
("accept_and_elevate_btn_tooltip", "קבל את החיבור והגבה הרשאות UAC."),
|
||||
("clipboard_wait_response_timeout_tip", "המתנה לתגובת העתקה הסתיימה בזמן."),
|
||||
("Incoming connection", ""),
|
||||
("Outgoing connection", ""),
|
||||
("Exit", ""),
|
||||
("Open", ""),
|
||||
("logout_tip", "האם אתה בטוח שברצונך להתנתק?"),
|
||||
("Service", ""),
|
||||
("Start", ""),
|
||||
("Stop", ""),
|
||||
("exceed_max_devices", "הגעת למספר המקסימלי של מכשירים שניתן לנהל."),
|
||||
("Sync with recent sessions", ""),
|
||||
("Sort tags", ""),
|
||||
("Open connection in new tab", ""),
|
||||
("Move tab to new window", ""),
|
||||
("Can not be empty", ""),
|
||||
("Already exists", ""),
|
||||
("Change Password", "שנה סיסמה"),
|
||||
("Refresh Password", "רענן סיסמה"),
|
||||
("ID", ""),
|
||||
("Grid View", "תצוגת רשת"),
|
||||
("List View", "תצוגת רשימה"),
|
||||
("Select", ""),
|
||||
("Toggle Tags", "החלף תגיות"),
|
||||
("pull_ab_failed_tip", "נכשל ברענון ספר הכתובות"),
|
||||
("push_ab_failed_tip", "נכשל בסנכרון ספר הכתובות לשרת"),
|
||||
("synced_peer_readded_tip", "המכשירים שהיו נוכחים בסשנים האחרונים יסונכרנו בחזרה לספר הכתובות."),
|
||||
("Change Color", "שנה צבע"),
|
||||
("Primary Color", "צבע עיקרי"),
|
||||
("HSV Color", "צבע HSV"),
|
||||
("Installation Successful!", "ההתקנה הצליחה!"),
|
||||
("Installation failed!", ""),
|
||||
("Reverse mouse wheel", ""),
|
||||
("{} sessions", ""),
|
||||
("scam_title", "ייתכן שאתה נפלת להונאה!"),
|
||||
("scam_text1", "אם אתה בשיחת טלפון עם מישהו שאינך מכיר ואינך סומך עליו שביקש ממך להשתמש ב-RustDesk ולהתחיל את השירות, אל תמשיך ונתק מיד."),
|
||||
("scam_text2", "סביר להניח שמדובר בהונאה שמנסה לגנוב ממך כסף או מידע פרטי אחר."),
|
||||
("Don't show again", ""),
|
||||
("I Agree", ""),
|
||||
("Decline", ""),
|
||||
("Timeout in minutes", ""),
|
||||
("auto_disconnect_option_tip", "סגור באופן אוטומטי סשנים נכנסים במקרה של חוסר פעילות של המשתמש"),
|
||||
("Connection failed due to inactivity", "התנתקות אוטומטית בגלל חוסר פעילות"),
|
||||
("Check for software update on startup", ""),
|
||||
("upgrade_rustdesk_server_pro_to_{}_tip", "אנא שדרג את RustDesk Server Pro לגרסה {} או חדשה יותר!"),
|
||||
("pull_group_failed_tip", "נכשל ברענון קבוצה"),
|
||||
("Filter by intersection", ""),
|
||||
("Remove wallpaper during incoming sessions", ""),
|
||||
("Test", ""),
|
||||
("display_is_plugged_out_msg", "המסך הופסק, החלף למסך הראשון."),
|
||||
("No displays", ""),
|
||||
("elevated_switch_display_msg", "מעבר למסך הראשי מכיוון שתמיכה במסכים מרובים אינה נתמכת במצב משתמש מוגבה."),
|
||||
("Open in new window", ""),
|
||||
("Show displays as individual windows", ""),
|
||||
("Use all my displays for the remote session", ""),
|
||||
("selinux_tip", "SELinux מופעל במכשיר שלך, מה שעלול למנוע מ-RustDesk לפעול כראוי כצד הנשלט."),
|
||||
("Change view", ""),
|
||||
("Big tiles", ""),
|
||||
("Small tiles", ""),
|
||||
("List", ""),
|
||||
("Virtual display", ""),
|
||||
("Plug out all", ""),
|
||||
("True color (4:4:4)", ""),
|
||||
("Enable blocking user input", ""),
|
||||
("id_input_tip", "ניתן להזין מזהה, IP ישיר, או דומיין עם פורט (<domain>:<port>).\nאם ברצונך לגשת למכשיר בשרת אחר, אנא הוסף את כתובת השרת (<id>@<server_address>?key=<key_value>), לדוגמה,\n9123456234@192.168.16.1:21117?key=5Qbwsde3unUcJBtrx9ZkvUmwFNoExHzpryHuPUdqlWM=.\nאם ברצונך לגשת למכשיר בשרת ציבורי, אנא הזן \"<id>@public\", המפתח אינו נדרש לשרת ציבורי"),
|
||||
("privacy_mode_impl_mag_tip", "מצב 1"),
|
||||
("privacy_mode_impl_virtual_display_tip", "מצב 2"),
|
||||
("Enter privacy mode", ""),
|
||||
("Exit privacy mode", ""),
|
||||
("idd_not_support_under_win10_2004_tip", "נהג התצוגה העקיף אינו נתמך. נדרשת גרסת Windows 10, גרסה 2004 או חדשה יותר."),
|
||||
("switch_display_elevated_connections_tip", "מעבר למסך שאינו ראשי אינו נתמך במצב משתמש מוגבה כאשר יש מספר חיבורים. אנא נסה שוב לאחר התקנה אם ברצונך לשלוט במסכים מרובים."),
|
||||
("input_source_1_tip", "מקור קלט 1"),
|
||||
("input_source_2_tip", "מקור קלט 2"),
|
||||
("capture_display_elevated_connections_tip", "לכידת מסכים מרובים אינה נתמכת במצב משתמש מוגבה. אנא נסה שוב לאחר התקנה אם ברצונך לשלוט במסכים מרובים."),
|
||||
("Swap control-command key", ""),
|
||||
("swap-left-right-mouse", "החלף בין כפתור העכבר השמאלי לימני"),
|
||||
("2FA code", "קוד אימות דו-שלבי"),
|
||||
("More", ""),
|
||||
("enable-2fa-title", "הפעל אימות דו-שלבי"),
|
||||
("enable-2fa-desc", "אנא הגדר כעת את האפליקציה שלך לאימות. תוכל להשתמש באפליקציית אימות כגון Authy, Microsoft או Google Authenticator בטלפון או במחשב שלך.\n\nסרוק את קוד ה-QR עם האפליקציה שלך והזן את הקוד שהאפליקציה מציגה כדי להפעיל את אימות הדו-שלבי."),
|
||||
("wrong-2fa-code", "לא ניתן לאמת את הקוד. בדוק שהקוד והגדרות הזמן המקומיות נכונות"),
|
||||
("enter-2fa-title", "אימות דו-שלבי"),
|
||||
("Email verification code must be 6 characters.", ""),
|
||||
("2FA code must be 6 digits.", ""),
|
||||
("Multiple Windows sessions found", ""),
|
||||
("Please select the session you want to connect to", ""),
|
||||
("powered_by_me", ""),
|
||||
("outgoing_only_desk_tip", "זוהי מהדורה מותאמת אישית.\nניתן להתחבר למכשירים אחרים, אך מכשירים אחרים לא יכולים להתחבר אליך."),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,7 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "Seleziona la sessione a cui connetterti"),
|
||||
("powered_by_me", "Alimentato da RustDesk"),
|
||||
("outgoing_only_desk_tip", "Questa è un'edizione personalizzata.\nPuoi connetterti ad altri dispositivi, ma gli altri dispositivi non possono connettersi a questo dispositivo."),
|
||||
("preset_password_warning", "Questa edizione personalizzata viene fornita con una password preimpostata. Chiunque conosca questa password potrebbe ottenere il pieno controllo del dispositivo. Se non te lo aspettavi, disinstalla immediatamente il software."),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "연결하려는 세션을 선택하세요."),
|
||||
("powered_by_me", "RustDesk 제공"),
|
||||
("outgoing_only_desk_tip", "이것은 맞춤형 버전입니다.\n다른 장치에 연결할 수 있지만 다른 장치는 귀하의 장치에 연결할 수 없습니다."),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "Lūdzu, atlasiet sesiju, ar kuru vēlaties izveidot savienojumu"),
|
||||
("powered_by_me", "Darbojas ar RustDesk"),
|
||||
("outgoing_only_desk_tip", "Šis ir pielāgots izdevums.\nVarat izveidot savienojumu ar citām ierīcēm, taču citas ierīces nevar izveidot savienojumu ar jūsu ierīci."),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "Selecteer de sessie waarmee je verbinding wilt maken"),
|
||||
("powered_by_me", "Werkt met Rustdesk"),
|
||||
("outgoing_only_desk_tip", "Je kan verbinding maken met andere apparaten, maar andere apparaten kunnen geen verbinding maken met dit apparaat."),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "Wybierz sesję, do której chcesz się podłączyć"),
|
||||
("powered_by_me", ""),
|
||||
("outgoing_only_desk_tip", ""),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -590,5 +590,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("outgoing_only_desk_tip", "Это специализированная версия.\nВы можете подключаться к другим устройствам, но другие устройства не могут подключиться к вашему."),
|
||||
("preset_password_warning", "Это специализированная версия с предустановленным паролем. Любой, кто знает этот пароль, может получить полный контроль над вашим устройством. Если это для вас неожиданно, немедленно удалите данное программное обеспечение."),
|
||||
("Security Alert", "Предупреждение о безопасности"),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "Vyberte reláciu, ku ktorej sa chcete pripojiť"),
|
||||
("powered_by_me", "Poháňané aplikáciou RustDesk"),
|
||||
("outgoing_only_desk_tip", "Toto je prispôsobené vydanie.\nMôžete sa pripojiť k iným zariadeniam, ale iné zariadenia sa k vášmu zariadeniu pripojiť nemôžu."),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -590,5 +590,23 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("outgoing_only_desk_tip", ""),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||||
("Please select the session you want to connect to", "請選擇您想要連結的工作階段"),
|
||||
("powered_by_me", "由 RustDesk 提供支援"),
|
||||
("outgoing_only_desk_tip", "目前版本的軟體是自定義版本。\n您可以連接至其他設備,但是其他設備無法連接至您的設備。"),
|
||||
("preset_password_warning", ""),
|
||||
("Security Alert", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -588,5 +588,25 @@ 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", ""),
|
||||
("Add shared address book", ""),
|
||||
("Update this address book", ""),
|
||||
("Delete this address book", ""),
|
||||
("Share this address book", ""),
|
||||
("Are you sure you want to delete address book {}?", ""),
|
||||
("My address book", ""),
|
||||
("Personal", ""),
|
||||
("Owner", ""),
|
||||
("Set shared password", ""),
|
||||
("Exist in", ""),
|
||||
("Read-only", ""),
|
||||
("Read/Write", ""),
|
||||
("Full Control", ""),
|
||||
("full_control_tip", ""),
|
||||
("share_warning_tip", ""),
|
||||
("Only show existing", ""),
|
||||
("Everyone", ""),
|
||||
("permission_priority_tip", ""),
|
||||
].iter().cloned().collect();
|
||||
}
|
||||
|
||||
@@ -519,7 +519,7 @@ impl SciterSession {
|
||||
.lc
|
||||
.write()
|
||||
.unwrap()
|
||||
.initialize(id, conn_type, None, force_relay, None);
|
||||
.initialize(id, conn_type, None, force_relay, None, None);
|
||||
|
||||
Self(session)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user