diff --git a/ui/src/i18n/en.json b/ui/src/i18n/en.json index 3b2cbda..885ba49 100644 --- a/ui/src/i18n/en.json +++ b/ui/src/i18n/en.json @@ -66,7 +66,7 @@ "Invalid IP address": "Invalid IP address", "Invalid port": "Invalid port", "Must start with /": "Must start with /", - "Already copied to clipboard": "Already copied to clipboard", + "Copied to clipboard": "Copied to clipboard", "Please use shortcut \"Shift+Insert\"": "Please use shortcut \"Shift+Insert\"", "Your device's rtty does not support https proxy, please upgrade it.": "Your device's rtty does not support https proxy, please upgrade it." -} \ No newline at end of file +} diff --git a/ui/src/i18n/zh-CN.json b/ui/src/i18n/zh-CN.json index 46c3a71..0098118 100644 --- a/ui/src/i18n/zh-CN.json +++ b/ui/src/i18n/zh-CN.json @@ -67,7 +67,7 @@ "Invalid IP address": "无效的 IP 地址", "Invalid port": "无效的端口", "Must start with /": "必须以 / 开头", - "Already copied to clipboard": "已复制到剪切板", + "Copied to clipboard": "已复制到剪切板", "Please use shortcut \"Shift+Insert\"": "请使用快捷键 \"Shift+Insert\"", "Your device's rtty does not support https proxy, please upgrade it.": "你的设备的 rtty 不支持 https 代理,请升级" -} \ No newline at end of file +} diff --git a/ui/src/views/Rtty.vue b/ui/src/views/Rtty.vue index 22d54a3..6aeda39 100644 --- a/ui/src/views/Rtty.vue +++ b/ui/src/views/Rtty.vue @@ -84,7 +84,7 @@ export default { const text = this.term.getSelection() if (text) { this.$copyText(text).then(() => { - this.$message.success(this.$t('Already copied to clipboard')) + this.$message.success(this.$t('Copied to clipboard')) }) } } else if (name === 'paste') {