2021-12-25 16:45:22 +08:00
|
|
|
|
lazy_static::lazy_static! {
|
|
|
|
|
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|
|
|
|
[
|
|
|
|
|
("Status", "状态"),
|
|
|
|
|
("Your Desktop", "你的桌面"),
|
2022-01-17 12:05:06 +08:00
|
|
|
|
("desk_tip", "你的桌面可以通过下面的ID和密码访问。"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Password", "密码"),
|
|
|
|
|
("Ready", "就绪"),
|
2022-04-04 14:09:54 +08:00
|
|
|
|
("Established", "已建立"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("connecting_status", "正在接入RustDesk网络..."),
|
|
|
|
|
("Enable Service", "允许服务"),
|
|
|
|
|
("Start Service", "启动服务"),
|
2022-04-04 14:09:54 +08:00
|
|
|
|
("Service is running", "服务正在运行"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Service is not running", "服务没有启动"),
|
|
|
|
|
("not_ready_status", "未就绪,请检查网络连接"),
|
|
|
|
|
("Control Remote Desktop", "控制远程桌面"),
|
|
|
|
|
("Transfer File", "传输文件"),
|
|
|
|
|
("Connect", "连接"),
|
|
|
|
|
("Recent Sessions", "最近访问过"),
|
|
|
|
|
("Address Book", "地址簿"),
|
|
|
|
|
("Confirmation", "确认"),
|
|
|
|
|
("TCP Tunneling", "TCP隧道"),
|
|
|
|
|
("Remove", "删除"),
|
|
|
|
|
("Refresh random password", "刷新随机密码"),
|
|
|
|
|
("Set your own password", "设置密码"),
|
|
|
|
|
("Enable Keyboard/Mouse", "允许控制键盘/鼠标"),
|
|
|
|
|
("Enable Clipboard", "允许同步剪贴板"),
|
|
|
|
|
("Enable File Transfer", "允许传输文件"),
|
|
|
|
|
("Enable TCP Tunneling", "允许建立TCP隧道"),
|
|
|
|
|
("IP Whitelisting", "IP白名单"),
|
|
|
|
|
("ID/Relay Server", "ID/中继服务器"),
|
|
|
|
|
("Stop service", "停止服务"),
|
|
|
|
|
("Change ID", "改变ID"),
|
|
|
|
|
("Website", "网站"),
|
|
|
|
|
("About", "关于"),
|
|
|
|
|
("Mute", "静音"),
|
|
|
|
|
("Audio Input", "音频输入"),
|
2022-06-30 21:01:04 +08:00
|
|
|
|
("Enhancements", "增强功能"),
|
|
|
|
|
("Hardware Codec", "硬件编解码"),
|
|
|
|
|
("Adaptive Bitrate", "自适应码率"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("ID Server", "ID服务器"),
|
|
|
|
|
("Relay Server", "中继服务器"),
|
|
|
|
|
("API Server", "API服务器"),
|
|
|
|
|
("invalid_http", "必须以http://或者https://开头"),
|
|
|
|
|
("Invalid IP", "无效IP"),
|
|
|
|
|
("id_change_tip", "只可以使用字母a-z, A-Z, 0-9, _ (下划线)。首字母必须是a-z, A-Z。长度在6与16之间。"),
|
|
|
|
|
("Invalid format", "无效格式"),
|
2022-05-13 18:10:32 +08:00
|
|
|
|
("server_not_support", "服务器暂不支持"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("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...", "已连接,等待画面传输..."),
|
2022-03-28 19:05:12 +08:00
|
|
|
|
("Name", "名称"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Type", "类型"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Modified", "修改时间"),
|
|
|
|
|
("Size", "大小"),
|
|
|
|
|
("Show Hidden Files", "显示隐藏文件"),
|
|
|
|
|
("Receive", "接受"),
|
|
|
|
|
("Send", "发送"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Refresh File", "刷新文件"),
|
|
|
|
|
("Local", "本地"),
|
|
|
|
|
("Remote", "远程"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Remote Computer", "远程电脑"),
|
|
|
|
|
("Local Computer", "本地电脑"),
|
|
|
|
|
("Confirm Delete", "确认删除"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Delete", "删除"),
|
|
|
|
|
("Properties", "属性"),
|
|
|
|
|
("Multi Select", "多选"),
|
|
|
|
|
("Empty Directory", "空文件夹"),
|
|
|
|
|
("Not an empty directory", "这不是一个空文件夹"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Are you sure you want to delete this file?", "是否删除此文件?"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Are you sure you want to delete this empty directory?", "是否删除此空文件夹?"),
|
|
|
|
|
("Are you sure you want to delete the file of this directory?", "是否删除文件夹下的文件?"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Do this for all conflicts", "应用于其它冲突"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("This is irreversible!", "此操作不可逆!"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Deleting", "正在删除"),
|
|
|
|
|
("files", "文件"),
|
|
|
|
|
("Waiting", "等待..."),
|
|
|
|
|
("Finished", "完成"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Speed", "速度"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Custom Image Quality", "设置画面质量"),
|
|
|
|
|
("Privacy mode", "隐私模式"),
|
2022-01-15 18:27:15 +08:00
|
|
|
|
("Block user input", "阻止用户输入"),
|
|
|
|
|
("Unblock user input", "取消阻止用户输入"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Adjust Window", "调节窗口"),
|
|
|
|
|
("Original", "原始比例"),
|
|
|
|
|
("Shrink", "收缩"),
|
|
|
|
|
("Stretch", "伸展"),
|
2022-08-13 22:29:08 +08:00
|
|
|
|
("Scrollbar", "滚动条"),
|
|
|
|
|
("ScrollAuto", "自动滚动"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Good image quality", "好画质"),
|
|
|
|
|
("Balanced", "一般画质"),
|
|
|
|
|
("Optimize reaction time", "优化反应时间"),
|
|
|
|
|
("Custom", "自定义画质"),
|
|
|
|
|
("Show remote cursor", "显示远程光标"),
|
2022-06-30 21:01:04 +08:00
|
|
|
|
("Show quality monitor", "显示质量监测"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Disable clipboard", "禁止剪贴板"),
|
|
|
|
|
("Lock after session end", "断开后锁定远程电脑"),
|
|
|
|
|
("Insert", "插入"),
|
|
|
|
|
("Insert Lock", "锁定远程电脑"),
|
|
|
|
|
("Refresh", "刷新画面"),
|
|
|
|
|
("ID does not exist", "ID不存在"),
|
|
|
|
|
("Failed to connect to rendezvous server", "连接注册服务器失败"),
|
|
|
|
|
("Please try later", "请稍后再试"),
|
|
|
|
|
("Remote desktop is offline", "远程电脑不在线"),
|
|
|
|
|
("Key mismatch", "Key不匹配"),
|
|
|
|
|
("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安装到系统,从而规避上述问题。"),
|
|
|
|
|
("Click to upgrade", "点击这里升级"),
|
2022-01-17 12:05:06 +08:00
|
|
|
|
("Click to download", "点击这里下载"),
|
|
|
|
|
("Click to update", "点击这里更新"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("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", "本地端口"),
|
2022-09-29 13:07:37 +08:00
|
|
|
|
("Local Address", "当前地址"),
|
|
|
|
|
("Change Local Port", "修改本地端口"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("setup_server_tip", "如果需要更快连接速度,你可以选择自建服务器"),
|
|
|
|
|
("Too short, at least 6 characters.", "太短了,至少6个字符"),
|
|
|
|
|
("The confirmation is not identical.", "两次输入不匹配"),
|
|
|
|
|
("Permissions", "权限"),
|
|
|
|
|
("Accept", "接受"),
|
|
|
|
|
("Dismiss", "拒绝"),
|
|
|
|
|
("Disconnect", "断开连接"),
|
|
|
|
|
("Allow using keyboard and mouse", "允许使用键盘鼠标"),
|
|
|
|
|
("Allow using clipboard", "允许使用剪贴板"),
|
|
|
|
|
("Allow hearing sound", "允许听到声音"),
|
2022-06-06 12:25:47 +08:00
|
|
|
|
("Allow file copy and paste", "允许复制粘贴文件"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Connected", "已经连接"),
|
|
|
|
|
("Direct and encrypted connection", "加密直连"),
|
|
|
|
|
("Relayed and encrypted connection", "加密中继连接"),
|
|
|
|
|
("Direct and unencrypted connection", "非加密直连"),
|
|
|
|
|
("Relayed and unencrypted connection", "非加密中继连接"),
|
|
|
|
|
("Enter Remote ID", "输入对方ID"),
|
|
|
|
|
("Enter your password", "输入密码"),
|
|
|
|
|
("Logging in...", "正在登录..."),
|
|
|
|
|
("Enable RDP session sharing", "允许RDP会话共享"),
|
|
|
|
|
("Auto Login", "自动登录(设置断开后锁定才有效)"),
|
|
|
|
|
("Enable Direct IP Access", "允许IP直接访问"),
|
|
|
|
|
("Rename", "改名"),
|
|
|
|
|
("Space", "空格"),
|
|
|
|
|
("Create Desktop Shortcut", "创建桌面快捷方式"),
|
|
|
|
|
("Change Path", "改变路径"),
|
|
|
|
|
("Create Folder", "创建文件夹"),
|
|
|
|
|
("Please enter the folder name", "请输入文件夹名称"),
|
|
|
|
|
("Fix it", "修复"),
|
|
|
|
|
("Warning", "警告"),
|
|
|
|
|
("Login screen using Wayland is not supported", "不支持使用 Wayland 登录界面"),
|
|
|
|
|
("Reboot required", "重启后才能生效"),
|
|
|
|
|
("Unsupported display server ", "不支持当前显示服务器"),
|
|
|
|
|
("x11 expected", "请切换到 x11"),
|
|
|
|
|
("Port", "端口"),
|
|
|
|
|
("Settings", "设置"),
|
2022-09-20 18:09:02 +08:00
|
|
|
|
("Username", "用户名"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
("Invalid port", "无效端口"),
|
|
|
|
|
("Closed manually by the peer", "被对方手动关闭"),
|
|
|
|
|
("Enable remote configuration modification", "允许远程修改配置"),
|
|
|
|
|
("Run without install", "无安装运行"),
|
|
|
|
|
("Always connected via relay", "强制走中继连接"),
|
|
|
|
|
("Always connect via relay", "强制走中继连接"),
|
|
|
|
|
("whitelist_tip", "只有白名单里的ip才能访问我"),
|
|
|
|
|
("Login", "登录"),
|
|
|
|
|
("Logout", "登出"),
|
|
|
|
|
("Tags", "标签"),
|
|
|
|
|
("Search ID", "查找ID"),
|
|
|
|
|
("Current Wayland display server is not supported", "不支持 Wayland 显示服务器"),
|
|
|
|
|
("whitelist_sep", "可以使用逗号,分号,空格或者换行符作为分隔符"),
|
|
|
|
|
("Add ID", "增加ID"),
|
|
|
|
|
("Add Tag", "增加标签"),
|
|
|
|
|
("Unselect all tags", "取消选择所有标签"),
|
|
|
|
|
("Network error", "网络错误"),
|
|
|
|
|
("Username missed", "用户名没有填写"),
|
|
|
|
|
("Password missed", "密码没有填写"),
|
|
|
|
|
("Wrong credentials", "用户名或者密码错误"),
|
|
|
|
|
("Edit Tag", "修改标签"),
|
2022-01-02 15:09:44 +08:00
|
|
|
|
("Unremember Password", "忘掉密码"),
|
2022-01-03 00:24:36 +08:00
|
|
|
|
("Favorites", "收藏"),
|
|
|
|
|
("Add to Favorites", "加入到收藏"),
|
|
|
|
|
("Remove from Favorites", "从收藏中删除"),
|
|
|
|
|
("Empty", "空空如也"),
|
2022-01-05 16:48:09 +08:00
|
|
|
|
("Invalid folder name", "无效文件夹名称"),
|
2022-01-05 18:38:40 +08:00
|
|
|
|
("Socks5 Proxy", "Socks5 代理"),
|
|
|
|
|
("Hostname", "主机名"),
|
2022-01-12 03:10:15 +08:00
|
|
|
|
("Discovered", "已发现"),
|
2022-01-30 03:41:18 +08:00
|
|
|
|
("install_daemon_tip", "为了开机启动,请安装系统服务。"),
|
2022-01-31 01:54:49 +08:00
|
|
|
|
("Remote ID", "远程ID"),
|
|
|
|
|
("Paste", "粘贴"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Paste here?", "粘贴到这里?"),
|
2022-01-31 01:54:49 +08:00
|
|
|
|
("Are you sure to close the connection?", "是否确认关闭连接?"),
|
|
|
|
|
("Download new version", "下载新版本"),
|
|
|
|
|
("Touch mode", "触屏模式"),
|
2022-04-08 18:29:40 +08:00
|
|
|
|
("Mouse mode", "鼠标模式"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("One-Finger Tap", "单指轻触"),
|
|
|
|
|
("Left Mouse", "鼠标左键"),
|
|
|
|
|
("One-Long Tap", "单指长按"),
|
|
|
|
|
("Two-Finger Tap", "双指轻触"),
|
|
|
|
|
("Right Mouse", "鼠标右键"),
|
|
|
|
|
("One-Finger Move", "单指移动"),
|
|
|
|
|
("Double Tap & Move", "双击并移动"),
|
|
|
|
|
("Mouse Drag", "鼠标选中拖动"),
|
2022-05-12 22:09:45 +08:00
|
|
|
|
("Three-Finger vertically", "三指垂直滑动"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Mouse Wheel", "鼠标滚轮"),
|
|
|
|
|
("Two-Finger Move", "双指移动"),
|
|
|
|
|
("Canvas Move", "移动画布"),
|
|
|
|
|
("Pinch to Zoom", "双指缩放"),
|
|
|
|
|
("Canvas Zoom", "缩放画布"),
|
2022-01-31 01:54:49 +08:00
|
|
|
|
("Reset canvas", "重置画布"),
|
2022-03-22 17:09:45 +08:00
|
|
|
|
("No permission of file transfer", "没有文件传输权限"),
|
|
|
|
|
("Note", "备注"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Connection", "连接"),
|
|
|
|
|
("Share Screen", "共享屏幕"),
|
|
|
|
|
("CLOSE", "关闭"),
|
|
|
|
|
("OPEN", "开启"),
|
|
|
|
|
("Chat", "聊天消息"),
|
|
|
|
|
("Total", "总计"),
|
|
|
|
|
("items", "个项目"),
|
|
|
|
|
("Selected", "已选择"),
|
|
|
|
|
("Screen Capture", "屏幕录制"),
|
2022-04-20 15:45:33 +08:00
|
|
|
|
("Input Control", "输入控制"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("Audio Capture", "音频录制"),
|
|
|
|
|
("File Connection", "文件连接"),
|
|
|
|
|
("Screen Connection", "屏幕连接"),
|
|
|
|
|
("Do you accept?", "是否接受?"),
|
|
|
|
|
("Open System Setting", "打开系统设置"),
|
|
|
|
|
("How to get Android input permission?", "如何获取安卓的输入权限?"),
|
2022-04-20 15:45:33 +08:00
|
|
|
|
("android_input_permission_tip1", "為了讓遠程設備通過鼠標或者觸屏控制您的安卓設備,你需要允許RustDesk使用\"無障礙\"服務。"),
|
|
|
|
|
("android_input_permission_tip2", "请在接下来的系统设置页面里,找到并进入 [已安装的服务] 页面,将 [RustDesk Input] 服务开启。"),
|
2022-03-24 15:27:06 +08:00
|
|
|
|
("android_new_connection_tip", "收到新的连接控制请求,对方想要控制你当前的设备。"),
|
|
|
|
|
("android_service_will_start_tip", "开启录屏权限将自动开启服务,允许其他设备向此设备请求建立连接。"),
|
|
|
|
|
("android_stop_service_tip", "关闭服务将自动关闭所有已建立的连接。"),
|
|
|
|
|
("android_version_audio_tip", "当前安卓版本不支持音频录制,请升级至安卓10或更高。"),
|
|
|
|
|
("android_start_service_tip", "点击 [启动服务] 或打开 [屏幕录制] 权限开启手机屏幕共享服务。"),
|
2022-04-06 10:51:24 +08:00
|
|
|
|
("Account", "账号"),
|
2022-05-08 16:08:30 +08:00
|
|
|
|
("Overwrite", "覆盖"),
|
2022-05-08 16:09:37 +08:00
|
|
|
|
("This file exists, skip or overwrite this file?", "这个文件/文件夹已存在,跳过/覆盖?"),
|
2022-04-25 12:28:28 +08:00
|
|
|
|
("Quit", "退出"),
|
2022-09-18 17:38:16 +08:00
|
|
|
|
("doc_mac_permission", "https://rustdesk.com/docs/zh-cn/manual/mac#%E5%90%AF%E7%94%A8%E6%9D%83%E9%99%90"),
|
2022-05-02 02:44:16 +08:00
|
|
|
|
("Help", "帮助"),
|
2022-04-25 12:28:28 +08:00
|
|
|
|
("Failed", "失败"),
|
|
|
|
|
("Succeeded", "成功"),
|
|
|
|
|
("Someone turns on privacy mode, exit", "其他用户使用隐私模式,退出"),
|
|
|
|
|
("Unsupported", "不支持"),
|
|
|
|
|
("Peer denied", "被控端拒绝"),
|
|
|
|
|
("Please install plugins", "请安装插件"),
|
|
|
|
|
("Peer exit", "被控端退出"),
|
|
|
|
|
("Failed to turn off", "退出失败"),
|
|
|
|
|
("Turned off", "退出"),
|
2022-05-31 12:01:22 +08:00
|
|
|
|
("In privacy mode", "进入隐私模式"),
|
|
|
|
|
("Out privacy mode", "退出隐私模式"),
|
2022-06-30 01:19:38 +08:00
|
|
|
|
("Language", "语言"),
|
2022-07-14 17:44:37 +08:00
|
|
|
|
("Keep RustDesk background service", "保持RustDesk后台服务"),
|
|
|
|
|
("Ignore Battery Optimizations", "忽略电池优化"),
|
2022-07-16 22:31:44 +08:00
|
|
|
|
("android_open_battery_optimizations_tip", "如需关闭此功能,请在接下来的RustDesk应用设置页面中,找到并进入 [电源] 页面,取消勾选 [不受限制]"),
|
2022-06-20 10:41:46 +08:00
|
|
|
|
("Connection not allowed", "对方不允许连接"),
|
2022-07-23 20:51:01 +08:00
|
|
|
|
("Legacy mode", "传统模式"),
|
|
|
|
|
("Map mode", "1:1传输"),
|
2022-08-04 21:02:00 +08:00
|
|
|
|
("Translate mode", "翻译模式"),
|
2022-07-24 16:41:12 +08:00
|
|
|
|
("Use temporary password", "使用临时密码"),
|
|
|
|
|
("Use permanent password", "使用固定密码"),
|
|
|
|
|
("Use both passwords", "同时使用两种密码"),
|
|
|
|
|
("Set permanent password", "设置固定密码"),
|
|
|
|
|
("Set temporary password length", "设置临时密码长度"),
|
2022-07-25 19:35:15 +08:00
|
|
|
|
("Enable Remote Restart", "允许远程重启"),
|
|
|
|
|
("Allow remote restart", "允许远程重启"),
|
|
|
|
|
("Restart Remote Device", "重启远程电脑"),
|
|
|
|
|
("Are you sure you want to restart", "确定要重启"),
|
|
|
|
|
("Restarting Remote Device", "正在重启远程设备"),
|
2022-07-27 16:00:48 +08:00
|
|
|
|
("remote_restarting_tip", "远程设备正在重启, 请关闭当前提示框, 并在一段时间后使用永久密码重新连接"),
|
2022-08-03 09:08:10 +08:00
|
|
|
|
("Copied", "已复制"),
|
2022-08-26 23:28:08 +08:00
|
|
|
|
("Exit Fullscreen", "退出全屏"),
|
|
|
|
|
("Fullscreen", "全屏"),
|
|
|
|
|
("Mobile Actions", "移动端操作"),
|
|
|
|
|
("Select Monitor", "选择监视器"),
|
|
|
|
|
("Control Actions", "控制操作"),
|
|
|
|
|
("Display Settings", "显示设置"),
|
|
|
|
|
("Ratio", "比例"),
|
|
|
|
|
("Image Quality", "画质"),
|
|
|
|
|
("Scroll Style", "滚屏方式"),
|
2022-08-28 21:55:16 +08:00
|
|
|
|
("Show Menubar", "显示菜单栏"),
|
|
|
|
|
("Hide Menubar", "隐藏菜单栏"),
|
2022-08-29 22:46:19 +08:00
|
|
|
|
("Direct Connection", "直接连接"),
|
|
|
|
|
("Relay Connection", "中继连接"),
|
|
|
|
|
("Secure Connection", "安全连接"),
|
|
|
|
|
("Insecure Connection", "非安全连接"),
|
2022-08-31 16:41:05 +08:00
|
|
|
|
("Scale original", "原始尺寸"),
|
|
|
|
|
("Scale adaptive", "适应窗口"),
|
2022-09-08 21:40:43 +08:00
|
|
|
|
("General", "常规"),
|
|
|
|
|
("Security", "安全"),
|
2022-09-22 17:38:18 +08:00
|
|
|
|
("Account", "账户"),
|
2022-09-08 21:40:43 +08:00
|
|
|
|
("Theme", "主题"),
|
|
|
|
|
("Dark Theme", "暗黑主题"),
|
2022-09-26 09:40:39 +08:00
|
|
|
|
("Dark", "黑暗"),
|
|
|
|
|
("Light", "明亮"),
|
|
|
|
|
("Follow System", "跟随系统"),
|
2022-09-08 21:40:43 +08:00
|
|
|
|
("Enable hardware codec", "使用硬件编解码"),
|
|
|
|
|
("Unlock Security Settings", "解锁安全设置"),
|
|
|
|
|
("Enable Audio", "允许传输音频"),
|
|
|
|
|
("Temporary Password Length", "临时密码长度"),
|
|
|
|
|
("Unlock Network Settings", "解锁网络设置"),
|
|
|
|
|
("Server", "服务器"),
|
|
|
|
|
("Direct IP Access", "IP直接访问"),
|
|
|
|
|
("Proxy", "代理"),
|
|
|
|
|
("Port", "端口"),
|
|
|
|
|
("Apply", "应用"),
|
|
|
|
|
("Disconnect all devices?", "断开所有远程连接?"),
|
|
|
|
|
("Clear", "清空"),
|
|
|
|
|
("Audio Input Device", "音频输入设备"),
|
|
|
|
|
("Deny remote access", "拒绝远程访问"),
|
|
|
|
|
("Use IP Whitelisting", "只允许白名单上的IP访问"),
|
|
|
|
|
("Network", "网络"),
|
|
|
|
|
("Enable RDP", "允许RDP访问"),
|
2022-09-13 21:59:06 +08:00
|
|
|
|
("Pin menubar", "固定菜单栏"),
|
2022-09-13 22:24:06 +08:00
|
|
|
|
("Unpin menubar", "取消固定菜单栏"),
|
2022-09-15 17:31:28 +08:00
|
|
|
|
("Recording", "录屏"),
|
|
|
|
|
("Directory", "目录"),
|
|
|
|
|
("Automatically record incoming sessions", "自动录制来访会话"),
|
|
|
|
|
("Change", "更改"),
|
|
|
|
|
("Start session recording", "开始录屏"),
|
|
|
|
|
("Stop session recording", "结束录屏"),
|
2022-09-22 09:55:34 +08:00
|
|
|
|
("Enable Recording Session", "允许录制会话"),
|
|
|
|
|
("Allow recording session", "允许录制会话"),
|
2022-09-24 09:58:57 +08:00
|
|
|
|
("Enable LAN Discovery", "允许局域网发现"),
|
|
|
|
|
("Deny LAN Discovery", "拒绝局域网发现"),
|
2022-09-26 18:10:54 +08:00
|
|
|
|
("Write a message", "输入聊天消息"),
|
2022-09-27 13:30:49 +08:00
|
|
|
|
("Prompt", "提示"),
|
|
|
|
|
("elevation_prompt", "以当前用户权限运行软件,可能导致远端在访问本机时,没有足够的权限来操作部分窗口。"),
|
|
|
|
|
("uac_warning", "暂时无法访问远端设备,因为远端设备正在请求用户账户权限,请等待对方关闭UAC窗口。为避免这个问题,建议在远端设备上安装或者以管理员权限运行本软件。"),
|
2022-09-28 20:48:14 +08:00
|
|
|
|
("elevated_foreground_window_warning", "暂时无法使用鼠标键盘,因为远端桌面的当前窗口需要更高的权限才能操作, 可以请求对方最小化当前窗口。为避免这个问题,建议在远端设备上安装或者以管理员权限运行本软件。"),
|
2021-12-25 16:45:22 +08:00
|
|
|
|
].iter().cloned().collect();
|
2022-03-22 17:09:45 +08:00
|
|
|
|
}
|