This commit is contained in:
rustdesk
2023-11-06 20:12:01 +08:00
parent 679a026e72
commit d7e8d4d5c3
64 changed files with 1193 additions and 1082 deletions

View File

@@ -3,21 +3,8 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("desk_tip", "Your desktop can be accessed with this ID and password."),
("connecting_status", "Connecting to the RustDesk network..."),
("Enable Service", "Enable service"),
("Start Service", "Enable service"),
("not_ready_status", "Not ready. Please check your connection"),
("Transfer File", "Transfer file"),
("Recent Sessions", "Recent sessions"),
("Address Book", "Address book"),
("TCP Tunneling", "TCP tunneling"),
("Enable Keyboard/Mouse", "Enable keyboard/mouse"),
("Enable Clipboard", "Enable clipboard"),
("Enable File Transfer", "Enable file transfer"),
("Enable TCP Tunneling", "Enable TCP tunneling"),
("IP Whitelisting", "IP whitelisting"),
("ID/Relay Server", "ID/Relay server"),
("Import Server Config", "Import server config"),
("Export Server Config", "Export server config"),
("id_change_tip", "Only a-z, A-Z, 0-9 and _ (underscore) characters allowed. The first letter must be a-z, A-Z. Length between 6 and 16."),
("Slogan_tip", "Made with heart in this chaotic world!"),
("Build Date", "Build date"),
@@ -61,8 +48,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("setup_server_tip", "For faster connection, please set up your own server"),
("Enter Remote ID", "Enter remote ID"),
("Auto Login", "Auto Login (Only valid if you set \"Lock after session end\")"),
("Enable Direct IP Access", "Enable direct IP access"),
("Create Desktop Shortcut", "Create desktop shortcut"),
("Change Path", "Change path"),
("Create Folder", "Create folder"),
("whitelist_tip", "Only whitelisted IP can access me"),
@@ -104,15 +89,11 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("android_service_will_start_tip", "Turning on \"Screen Capture\" will automatically start the service, allowing other devices to request a connection to your device."),
("android_stop_service_tip", "Closing the service will automatically close all established connections."),
("android_version_audio_tip", "The current Android version does not support audio capture, please upgrade to Android 10 or higher."),
("android_start_service_tip", "Tap [Start Service] or enable [Screen Capture] permission to start the screen sharing service."),
("android_start_service_tip", "Tap [Start service] or enable [Screen Capture] permission to start the screen sharing service."),
("android_permission_may_not_change_tip", "Permissions for established connections may not be changed instantly until reconnected."),
("doc_mac_permission", "https://rustdesk.com/docs/en/manual/mac/#enable-permissions"),
("Ignore Battery Optimizations", "Ignore battery optimizations"),
("android_open_battery_optimizations_tip", "If you want to disable this feature, please go to the next RustDesk application settings page, find and enter [Battery], Uncheck [Unrestricted]"),
("Start on Boot", "Start on boot"),
("Enable Remote Restart", "Enable remote restart"),
("Restart Remote Device", "Restart remote device"),
("Restarting Remote Device", "Restarting remote device"),
("remote_restarting_tip", "Remote device is restarting, please close this message box and reconnect with permanent password after a while"),
("Exit Fullscreen", "Exit fullscreen"),
("Mobile Actions", "Mobile actions"),
@@ -131,16 +112,12 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Light Theme", "Light theme"),
("Follow System", "Follow system"),
("Unlock Security Settings", "Unlock security settings"),
("Enable Audio", "Enable audio"),
("Unlock Network Settings", "Unlock network settings"),
("Direct IP Access", "Direct IP access"),
("Audio Input Device", "Audio input device"),
("Use IP Whitelisting", "Use IP whitelisting"),
("Pin Toolbar", "Pin toolbar"),
("Unpin Toolbar", "Unpin toolbar"),
("Enable Recording Session", "Enable recording session"),
("Enable LAN Discovery", "Enable LAN discovery"),
("Deny LAN Discovery", "Deny LAN discovery"),
("elevated_foreground_window_tip", "The current window of the remote desktop requires higher privilege to operate, so it's unable to use the mouse and keyboard temporarily. You can request the remote user to minimize the current window, or click elevation button on the connection management window. To avoid this problem, it is recommended to install the software on the remote device."),
("Keyboard Settings", "Keyboard settings"),
("Full Access", "Full access"),
@@ -150,7 +127,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("One-time Password", "One-time password"),
("hide_cm_tip", "Allow hiding only if accepting sessions via password and using permanent password"),
("wayland_experiment_tip", "Wayland support is in experimental stage, please use X11 if you require unattended access."),
("Add to Address Book", "Add to address book"),
("software_render_tip", "If you're using Nvidia graphics card under Linux and the remote window closes immediately after connecting, switching to the open-source Nouveau driver and choosing to use software rendering may help. A software restart is required."),
("config_input", "In order to control remote desktop with keyboard, you need to grant RustDesk \"Input Monitoring\" permissions."),
("config_microphone", "In order to speak remotely, you need to grant RustDesk \"Record Audio\" permissions."),
@@ -226,5 +202,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("display_is_plugged_out_msg", "The display is plugged out, switch to the first display."),
("elevated_switch_display_msg", "Switch to the primary display because multiple displays are not supported in elevated mode."),
("selinux_tip", "SELinux is enabled on your device, which may prevent RustDesk from running properly as controlled side."),
("id_input_tip", "You can input an ID, a direct IP, or a domain with a port (<domain>:<port>).\nIf you want to access a device on another server, please append the server address (<id>@<server_address>?key=<key_value>), for example,\n9123456234@192.168.16.1:21117?key=5Qbwsde3unUcJBtrx9ZkvUmwFNoExHzpryHuPUdqlWM=.\nIf you want to access a device on a public server, please input \"<id>@public\", the key is not needed for public server"),
].iter().cloned().collect();
}