mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-15 20:19:05 +08:00
307 lines
16 KiB
Rust
307 lines
16 KiB
Rust
lazy_static::lazy_static! {
|
||
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
||
[
|
||
("Status", "状态"),
|
||
("Your Desktop", "你的桌面"),
|
||
("desk_tip", "你的桌面可以通过下面的ID和密码访问。"),
|
||
("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", "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", "音频输入"),
|
||
("Enhancements", "增强功能"),
|
||
("Hardware Codec", "硬件编解码"),
|
||
("Adaptive Bitrate", "自适应码率"),
|
||
("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", "无效格式"),
|
||
("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", "多选"),
|
||
("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", "伸展"),
|
||
("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", "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", "点击这里升级"),
|
||
("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", "本地端口"),
|
||
("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", "允许听到声音"),
|
||
("Allow file copy and paste", "允许复制粘贴文件"),
|
||
("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", "设置"),
|
||
("Username", " 用户名"),
|
||
("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", "修改标签"),
|
||
("Unremember Password", "忘掉密码"),
|
||
("Favorites", "收藏"),
|
||
("Add to Favorites", "加入到收藏"),
|
||
("Remove from Favorites", "从收藏中删除"),
|
||
("Empty", "空空如也"),
|
||
("Invalid folder name", "无效文件夹名称"),
|
||
("Socks5 Proxy", "Socks5 代理"),
|
||
("Hostname", "主机名"),
|
||
("Discovered", "已发现"),
|
||
("install_daemon_tip", "为了开机启动,请安装系统服务。"),
|
||
("Remote ID", "远程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", "共享屏幕"),
|
||
("CLOSE", "关闭"),
|
||
("OPEN", "开启"),
|
||
("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", "点击 [启动服务] 或打开 [屏幕录制] 权限开启手机屏幕共享服务。"),
|
||
("Account", "账号"),
|
||
("Overwrite", "覆盖"),
|
||
("This file exists, skip or overwrite this file?", "这个文件/文件夹已存在,跳过/覆盖?"),
|
||
("Quit", "退出"),
|
||
("doc_mac_permission", "https://rustdesk.com/docs/zh-cn/manual/mac/#启用权限"),
|
||
("Help", "帮助"),
|
||
("Failed", "失败"),
|
||
("Succeeded", "成功"),
|
||
("Someone turns on privacy mode, exit", "其他用户使用隐私模式,退出"),
|
||
("Unsupported", "不支持"),
|
||
("Peer denied", "被控端拒绝"),
|
||
("Please install plugins", "请安装插件"),
|
||
("Peer exit", "被控端退出"),
|
||
("Failed to turn off", "退出失败"),
|
||
("Turned off", "退出"),
|
||
("In privacy mode", "进入隐私模式"),
|
||
("Out privacy mode", "退出隐私模式"),
|
||
("Language", "语言"),
|
||
("Keep RustDesk background service", "保持RustDesk后台服务"),
|
||
("Ignore Battery Optimizations", "忽略电池优化"),
|
||
("android_open_battery_optimizations_tip", "如需关闭此功能,请在接下来的RustDesk应用设置页面中,找到并进入 [电源] 页面,取消勾选 [不受限制]"),
|
||
("Connection not allowed", "对方不允许连接"),
|
||
("Legacy mode", "传统模式"),
|
||
("Map mode", "1:1传输"),
|
||
("Translate mode", "翻译模式"),
|
||
("Use temporary password", "使用临时密码"),
|
||
("Use permanent password", "使用固定密码"),
|
||
("Use both passwords", "同时使用两种密码"),
|
||
("Set permanent password", "设置固定密码"),
|
||
("Set temporary password length", "设置临时密码长度"),
|
||
("Enable Remote Restart", "允许远程重启"),
|
||
("Allow remote restart", "允许远程重启"),
|
||
("Restart Remote Device", "重启远程电脑"),
|
||
("Are you sure you want to restart", "确定要重启"),
|
||
("Restarting Remote Device", "正在重启远程设备"),
|
||
("remote_restarting_tip", "远程设备正在重启, 请关闭当前提示框, 并在一段时间后使用永久密码重新连接"),
|
||
].iter().cloned().collect();
|
||
}
|