mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
♻️ Changed default value for generic copy input.
This commit is contained in:
parent
5d43e04213
commit
6bd4caafe2
|
@ -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: {
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue