diff --git a/locales/en_US.json b/locales/en_US.json index 1d60415..932d7ef 100644 --- a/locales/en_US.json +++ b/locales/en_US.json @@ -148,6 +148,10 @@ "searchPlaceholder": "Search icon", "clearIcon": "Clear icon", "selectorTitle": "Icon selection" + }, + "copyText": { + "message": "Copied successfully", + "tooltip": "Copy" } } } diff --git a/locales/zh_CN.json b/locales/zh_CN.json index 6008c42..49feb6d 100644 --- a/locales/zh_CN.json +++ b/locales/zh_CN.json @@ -83,6 +83,10 @@ "inputPlaceholder": "选择目标图标", "searchPlaceholder": "搜索图标", "clearIcon": "清除图标" + }, + "copyText":{ + "tooltip":"复制", + "message":"复制成功" } }, "login": { diff --git a/src/components/custom/CopyText.vue b/src/components/custom/CopyText.vue index 49b7a9d..cb43076 100644 --- a/src/components/custom/CopyText.vue +++ b/src/components/custom/CopyText.vue @@ -10,8 +10,13 @@ const modelValue = defineModel('value') {{ modelValue }} - - - + + + {{ $t('components.copyText.tooltip') }} + diff --git a/src/directives/copy.ts b/src/directives/copy.ts index f483d91..bfd529f 100644 --- a/src/directives/copy.ts +++ b/src/directives/copy.ts @@ -1,4 +1,5 @@ import type { App, Directive } from 'vue' +import { $t } from '@/utils' interface CopyHTMLElement extends HTMLElement { _copyText: string @@ -25,7 +26,7 @@ export function install(app: App) { if (!clipboardEnable()) return copy(this._copyText) - window.$message.success('复制成功') + window.$message.success($t('components.copyText.message')) } function updataClipboard(el: CopyHTMLElement, text: string) {