mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
refactor(editor): Stop using $locale in favor of the i18n composable (#11731)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
@@ -75,7 +75,6 @@ const uiStore = useUIStore();
|
||||
const workflowsStore = useWorkflowsStore();
|
||||
|
||||
const nodeHelpers = useNodeHelpers();
|
||||
|
||||
const toast = useToast();
|
||||
|
||||
const subscribedToCredentialType = ref('');
|
||||
@@ -558,7 +557,7 @@ function getCredentialsFieldLabel(credentialType: INodeCredentialDescription): s
|
||||
<N8nTooltip placement="top">
|
||||
<template #content>
|
||||
<TitledList
|
||||
:title="`${$locale.baseText('nodeCredentials.issues')}:`"
|
||||
:title="`${i18n.baseText('nodeCredentials.issues')}:`"
|
||||
:items="getIssues(type.name)"
|
||||
/>
|
||||
</template>
|
||||
@@ -574,7 +573,7 @@ function getCredentialsFieldLabel(credentialType: INodeCredentialDescription): s
|
||||
<font-awesome-icon
|
||||
icon="pen"
|
||||
class="clickable"
|
||||
:title="$locale.baseText('nodeCredentials.updateCredential')"
|
||||
:title="i18n.baseText('nodeCredentials.updateCredential')"
|
||||
@click="editCredential(type.name)"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user