mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
fix: copy i18n
This commit is contained in:
parent
aa9aece0ca
commit
5975d05437
@ -155,7 +155,9 @@
|
|||||||
},
|
},
|
||||||
"copyText": {
|
"copyText": {
|
||||||
"message": "Copied successfully",
|
"message": "Copied successfully",
|
||||||
"tooltip": "Copy"
|
"tooltip": "Copy",
|
||||||
|
"unsupportedError": "Your browser does not support Clipboard API",
|
||||||
|
"unpermittedError": "Crrently not permitted to use Clipboard API"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,9 @@
|
|||||||
},
|
},
|
||||||
"copyText": {
|
"copyText": {
|
||||||
"tooltip": "复制",
|
"tooltip": "复制",
|
||||||
"message": "复制成功"
|
"message": "复制成功",
|
||||||
|
"unsupportedError": "您的浏览器不支持剪贴板API",
|
||||||
|
"unpermittedError": "目前不允许使用剪贴板API"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"login": {
|
"login": {
|
||||||
|
@ -11,12 +11,12 @@ export function install(app: App) {
|
|||||||
|
|
||||||
function clipboardEnable() {
|
function clipboardEnable() {
|
||||||
if (!isSupported.value) {
|
if (!isSupported.value) {
|
||||||
window.$message.error('Your browser does not support Clipboard API')
|
window.$message.error($t('components.copyText.unsupportedError'))
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
if (permissionWrite.value !== 'granted') {
|
if (permissionWrite.value !== 'granted') {
|
||||||
window.$message.error('Currently not permitted to use Clipboard API')
|
window.$message.error($t('components.copyText.unpermittedError'))
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user