mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +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:
@@ -605,8 +605,8 @@ const onSubmit = async (values: IPersonalizationLatestVersion) => {
|
||||
<template>
|
||||
<Modal
|
||||
:name="PERSONALIZATION_MODAL_KEY"
|
||||
:title="$locale.baseText('personalizationModal.customizeN8n')"
|
||||
:subtitle="$locale.baseText('personalizationModal.theseQuestionsHelpUs')"
|
||||
:title="i18n.baseText('personalizationModal.customizeN8n')"
|
||||
:subtitle="i18n.baseText('personalizationModal.theseQuestionsHelpUs')"
|
||||
:center-title="true"
|
||||
:show-close="false"
|
||||
:event-bus="modalBus"
|
||||
@@ -633,7 +633,7 @@ const onSubmit = async (values: IPersonalizationLatestVersion) => {
|
||||
<div>
|
||||
<n8n-button
|
||||
:loading="isSaving"
|
||||
:label="$locale.baseText('personalizationModal.getStarted')"
|
||||
:label="i18n.baseText('personalizationModal.getStarted')"
|
||||
float="right"
|
||||
@click="onSave"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user