♻️ Changed default value for generic copy input.

This commit is contained in:
Alex Grozav 2022-04-29 17:19:40 +03:00
parent 5d43e04213
commit 6bd4caafe2
3 changed files with 4 additions and 2 deletions

View file

@ -29,7 +29,7 @@ export default mixins(copyPaste, showMessage).extend({
copyButtonText: {
type: String,
default(): string {
return this.$locale.baseText('generic.copyToClipboard');
return this.$locale.baseText('generic.copy');
},
},
toastTitle: {

View file

@ -8,7 +8,8 @@
"generic.confirm": "Confirm",
"generic.cancel": "Cancel",
"generic.delete": "Delete",
"generic.copyToClipboard": "Copy to clipboard",
"generic.copy": "Copy",
"generic.clickToCopy": "Click to copy",
"generic.copiedToClipboard": "Copied to clipboard",
"about.aboutN8n": "About n8n",
"about.close": "Close",

View file

@ -26,6 +26,7 @@
<CopyInput
:label="$locale.baseText('settings.api.view.myKey')"
:value="apiKey"
:copy-button-text="$locale.baseText('generic.clickToCopy')"
:toast-title="$locale.baseText('settings.api.view.copy.toast')"
/>
</n8n-card>