From ca098f915a597977a444c82ebe05b836075a0ff1 Mon Sep 17 00:00:00 2001 From: Sachin Chavda Date: Mon, 11 Aug 2025 13:04:50 +0530 Subject: [PATCH 1/2] fix the tags link in onboarding tasks --- src/libs/ReportUtils.ts | 1 + src/libs/actions/Welcome/OnboardingFlow.ts | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 74614d6a16a5..bf4da759f52c 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -10248,6 +10248,7 @@ function prepareOnboardingOnyxData( onboardingCompanySize: companySize ?? onboardingCompanySize, workspaceSettingsLink: `${environmentURL}/${ROUTES.WORKSPACE_INITIAL.getRoute(onboardingPolicyID ?? firstAdminPolicy?.id)}`, workspaceCategoriesLink: `${environmentURL}/${ROUTES.WORKSPACE_CATEGORIES.getRoute(onboardingPolicyID)}`, + workspaceTagsLink: `${environmentURL}/${ROUTES.WORKSPACE_TAGS.getRoute(onboardingPolicyID)}`, workspaceMembersLink: `${environmentURL}/${ROUTES.WORKSPACE_MEMBERS.getRoute(onboardingPolicyID)}`, workspaceMoreFeaturesLink: `${environmentURL}/${ROUTES.WORKSPACE_MORE_FEATURES.getRoute(onboardingPolicyID)}`, workspaceConfirmationLink: `${environmentURL}/${ROUTES.WORKSPACE_CONFIRMATION.getRoute(ROUTES.WORKSPACES_LIST.route)}`, diff --git a/src/libs/actions/Welcome/OnboardingFlow.ts b/src/libs/actions/Welcome/OnboardingFlow.ts index 07c5d6cfe6ed..78cbc6832ee0 100644 --- a/src/libs/actions/Welcome/OnboardingFlow.ts +++ b/src/libs/actions/Welcome/OnboardingFlow.ts @@ -44,6 +44,7 @@ type OnboardingTaskLinks = Partial<{ integrationName: string; workspaceSettingsLink: string; workspaceCategoriesLink: string; + workspaceTagsLink: string; workspaceMoreFeaturesLink: string; workspaceMembersLink: string; workspaceAccountingLink: string; @@ -267,16 +268,15 @@ const getOnboardingMessages = (locale?: Locale) => { type: CONST.ONBOARDING_TASK_TYPE.SETUP_CATEGORIES_AND_TAGS, autoCompleted: false, mediaAttributes: {}, - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => - translate(resolvedLocale, 'onboarding.tasks.setupCategoriesAndTags.title', {workspaceCategoriesLink, workspaceMoreFeaturesLink}), + title: ({workspaceCategoriesLink, workspaceTagsLink}) => translate(resolvedLocale, 'onboarding.tasks.setupCategoriesAndTags.title', {workspaceCategoriesLink, workspaceTagsLink}), description: ({workspaceCategoriesLink, workspaceAccountingLink}) => translate(resolvedLocale, 'onboarding.tasks.setupCategoriesAndTags.description', {workspaceCategoriesLink, workspaceAccountingLink}), }; const setupTagsTask: OnboardingTask = { type: CONST.ONBOARDING_TASK_TYPE.SETUP_TAGS, autoCompleted: false, - title: ({workspaceMoreFeaturesLink}) => translate(resolvedLocale, 'onboarding.tasks.setupTagsTask.title', {workspaceMoreFeaturesLink}), - description: ({workspaceMoreFeaturesLink}) => translate(resolvedLocale, 'onboarding.tasks.setupTagsTask.description', {workspaceMoreFeaturesLink}), + title: ({workspaceTagsLink}) => translate(resolvedLocale, 'onboarding.tasks.setupTagsTask.title', {workspaceTagsLink}), + description: ({workspaceTagsLink}) => translate(resolvedLocale, 'onboarding.tasks.setupTagsTask.description', {workspaceTagsLink}), mediaAttributes: { [`${CONST.CLOUDFRONT_URL}/videos/walkthrough-tags-v2.mp4`]: `data-expensify-thumbnail-url="${CONST.CLOUDFRONT_URL}/images/walkthrough-tags.png" data-expensify-width="1920" data-expensify-height="1080"`, }, From 4a06815fa3965e8a68045c66787d313b7e69877c Mon Sep 17 00:00:00 2001 From: Sachin Chavda Date: Sat, 16 Aug 2025 13:46:49 +0530 Subject: [PATCH 2/2] fix links in translation files --- src/languages/de.ts | 4 ++-- src/languages/en.ts | 4 ++-- src/languages/es.ts | 4 ++-- src/languages/fr.ts | 4 ++-- src/languages/it.ts | 4 ++-- src/languages/ja.ts | 6 +++--- src/languages/nl.ts | 4 ++-- src/languages/pl.ts | 4 ++-- src/languages/pt-BR.ts | 4 ++-- src/languages/zh-hans.ts | 6 +++--- src/libs/actions/Welcome/OnboardingFlow.ts | 2 +- 11 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/languages/de.ts b/src/languages/de.ts index ebda7505ac79..a79414869b3e 100644 --- a/src/languages/de.ts +++ b/src/languages/de.ts @@ -2373,13 +2373,13 @@ const translations = { `![Team einladen](${CONST.CLOUDFRONT_URL}/videos/walkthrough-invite_members-v2.mp4)`, }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => `Richte [Kategorien](${workspaceCategoriesLink}) und [Tags](${workspaceMoreFeaturesLink}) ein`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => `Richte [Kategorien](${workspaceCategoriesLink}) und [Tags](${workspaceTagsLink}) ein`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*Richte Kategorien und Tags ein*, damit dein Team Ausgaben einfach zuordnen kann.\n\n' + `Importiere sie automatisch durch [Verbindung deiner Buchhaltungssoftware](${workspaceAccountingLink}) oder richte sie manuell in den [Workspace-Einstellungen](${workspaceCategoriesLink}) ein.`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `Richte [Tags](${workspaceMoreFeaturesLink}) ein`, + title: ({workspaceTagsLink}) => `Richte [Tags](${workspaceTagsLink}) ein`, description: ({workspaceMoreFeaturesLink}) => 'Verwende Tags, um zusätzliche Ausgabendetails wie Projekte, Kunden, Standorte und Abteilungen hinzuzufügen. Für mehrere Tag-Ebenen kannst du auf den Control-Plan upgraden.\n\n' + '1. Klicke auf *Workspaces*.\n' + diff --git a/src/languages/en.ts b/src/languages/en.ts index 53ee0ec45d93..309d1b30de83 100755 --- a/src/languages/en.ts +++ b/src/languages/en.ts @@ -2364,14 +2364,14 @@ const translations = { }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => `Set up [categories](${workspaceCategoriesLink}) and [tags](${workspaceMoreFeaturesLink})`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => `Set up [categories](${workspaceCategoriesLink}) and [tags](${workspaceTagsLink})`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*Set up categories and tags* so your team can code expenses for easy reporting.\n' + '\n' + `Import them automatically by [connecting your accounting software](${workspaceAccountingLink}), or set them up manually in your [workspace settings](${workspaceCategoriesLink}).`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `Set up [tags](${workspaceMoreFeaturesLink})`, + title: ({workspaceTagsLink}) => `Set up [tags](${workspaceTagsLink})`, description: ({workspaceMoreFeaturesLink}) => 'Use tags to add extra expense details like projects, clients, locations, and departments. If you need multiple levels of tags, you can upgrade to the Control plan.\n' + '\n' + diff --git a/src/languages/es.ts b/src/languages/es.ts index 748af2fb4c09..e55291642ec4 100644 --- a/src/languages/es.ts +++ b/src/languages/es.ts @@ -2344,13 +2344,13 @@ const translations = { `![Invita a tu equipo](${CONST.CLOUDFRONT_URL}/videos/walkthrough-invite_members-v2.mp4)`, }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => `Configura [categorías](${workspaceCategoriesLink}) y [etiquetas](${workspaceMoreFeaturesLink})`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => `Configura [categorías](${workspaceCategoriesLink}) y [etiquetas](${workspaceTagsLink})`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*Configura categorías y etiquetas* para que tu equipo pueda clasificar los gastos fácilmente.\n\n' + `Impórtalas automáticamente al [conectarte con tu software contable](${workspaceAccountingLink}), o configúralas manualmente en tu [configuración del espacio de trabajo](${workspaceCategoriesLink}).`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `Configura [etiquetas](${workspaceMoreFeaturesLink})`, + title: ({workspaceTagsLink}) => `Configura [etiquetas](${workspaceTagsLink})`, description: ({workspaceMoreFeaturesLink}) => 'Usa etiquetas para añadir detalles como proyectos, clientes, ubicaciones y departamentos. Si necesitas múltiples niveles, puedes mejorar al plan Controlar.\n\n' + '1. Haz clic en *Espacios de trabajo*.\n' + diff --git a/src/languages/fr.ts b/src/languages/fr.ts index b3e58a9c21b1..e2c6d90ff49f 100644 --- a/src/languages/fr.ts +++ b/src/languages/fr.ts @@ -2376,13 +2376,13 @@ const translations = { `![Inviter votre équipe](${CONST.CLOUDFRONT_URL}/videos/walkthrough-invite_members-v2.mp4)`, }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => `Configurer les [catégories](${workspaceCategoriesLink}) et [tags](${workspaceMoreFeaturesLink})`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => `Configurer les [catégories](${workspaceCategoriesLink}) et [tags](${workspaceTagsLink})`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*Configurez les catégories et tags* pour aider votre équipe à coder les dépenses plus facilement.\n\n' + `Importez-les automatiquement en [connectant votre logiciel comptable](${workspaceAccountingLink}), ou configurez-les manuellement dans les [paramètres de l’espace](${workspaceCategoriesLink}).`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `Configurer les [tags](${workspaceMoreFeaturesLink})`, + title: ({workspaceTagsLink}) => `Configurer les [tags](${workspaceTagsLink})`, description: ({workspaceMoreFeaturesLink}) => 'Utilisez les tags pour ajouter des détails comme projets, clients, emplacements et départements. Pour plusieurs niveaux de tags, passez au plan Control.\n\n' + '1. Cliquez sur *Espaces de travail*.\n' + diff --git a/src/languages/it.ts b/src/languages/it.ts index f4e0c9921ab1..c2a8b8210bdf 100644 --- a/src/languages/it.ts +++ b/src/languages/it.ts @@ -2378,14 +2378,14 @@ const translations = { `![Invita il tuo team](${CONST.CLOUDFRONT_URL}/videos/walkthrough-invite_members-v2.mp4)`, }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => `Configura [categorie](${workspaceCategoriesLink}) e [tag](${workspaceMoreFeaturesLink})`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => `Configura [categorie](${workspaceCategoriesLink}) e [tag](${workspaceTagsLink})`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*Configura categorie e tag* in modo che il tuo team possa codificare le spese per una rendicontazione semplice.\n' + '\n' + `Importale automaticamente [collegando il software di contabilità](${workspaceAccountingLink}), oppure configuralo manualmente nelle [impostazioni dello spazio di lavoro](${workspaceCategoriesLink}).`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `Configura i [tag](${workspaceMoreFeaturesLink})`, + title: ({workspaceTagsLink}) => `Configura i [tag](${workspaceTagsLink})`, description: ({workspaceMoreFeaturesLink}) => 'Usa i tag per aggiungere dettagli extra alle spese come progetti, clienti, sedi e reparti. Se ti servono più livelli di tag, puoi passare al piano Control.\n' + '\n' + diff --git a/src/languages/ja.ts b/src/languages/ja.ts index fb88cd275a8f..f61a9d04e295 100644 --- a/src/languages/ja.ts +++ b/src/languages/ja.ts @@ -2375,15 +2375,15 @@ const translations = { }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => - `[\u30AB\u30C6\u30B4\u30EA\u30FC](${workspaceCategoriesLink})\u3068[\u30BF\u30B0](${workspaceMoreFeaturesLink})\u3092\u8A2D\u5B9A\u3059\u308B`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => + `[\u30AB\u30C6\u30B4\u30EA\u30FC](${workspaceCategoriesLink})\u3068[\u30BF\u30B0](${workspaceTagsLink})\u3092\u8A2D\u5B9A\u3059\u308B`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*\u30AB\u30C6\u30B4\u30EA\u30FC\u3068\u30BF\u30B0\u3092\u8A2D\u5B9A\u3057\u307E\u3059* \u3068\u3001\u30C1\u30FC\u30E0\u306F\u7D4C\u8CBB\u3092\u30B3\u30FC\u30C9\u5316\u3057\u3066\u5BB9\u6613\u306B\u5831\u544A\u3067\u304D\u307E\u3059\u3002\n' + '\n' + `[\u4F1A\u8A08\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u3092\u63A5\u7D9A\u3059\u308B](${workspaceAccountingLink})\u3053\u3068\u3067\u81EA\u52D5\u7684\u306B\u30A4\u30F3\u30DD\u30FC\u30C8\u3059\u308B\u304B\u3001[\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u8A2D\u5B9A](${workspaceCategoriesLink})\u3067\u624B\u52D5\u3067\u8A2D\u5B9A\u3057\u307E\u305B\u3093\u304B\u3002`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `[\u30BF\u30B0](${workspaceMoreFeaturesLink})\u3092\u8A2D\u5B9A\u3059\u308B`, + title: ({workspaceTagsLink}) => `[\u30BF\u30B0](${workspaceTagsLink})\u3092\u8A2D\u5B9A\u3059\u308B`, description: ({workspaceMoreFeaturesLink}) => '\u30BF\u30B0\u3092\u4F7F\u7528\u3057\u3066\u3001\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u3001\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u3001\u5834\u6240\u3001\u90E8\u7F72\u306A\u3069\u306E\u8FFD\u52A0\u306E\u7D4C\u8CBB\u8A73\u7D30\u3092\u8FFD\u52A0\u3057\u307E\u3059\u3002\u8907\u6570\u306E\u30EC\u30D9\u30EB\u306E\u30BF\u30B0\u304C\u5FC5\u8981\u306A\u5834\u5408\u306F\u3001Control\u30D7\u30E9\u30F3\u306B\u30A2\u30C3\u30D7\u30B0\u30EC\u30FC\u30C9\u3067\u304D\u307E\u3059\u3002\n' + '\n' + diff --git a/src/languages/nl.ts b/src/languages/nl.ts index c72491392315..32de6778b041 100644 --- a/src/languages/nl.ts +++ b/src/languages/nl.ts @@ -2381,14 +2381,14 @@ const translations = { }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => `Stel [categorieën](${workspaceCategoriesLink}) en [tags](${workspaceMoreFeaturesLink}) in`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => `Stel [categorieën](${workspaceCategoriesLink}) en [tags](${workspaceTagsLink}) in`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*Stel categorieën en tags in* zodat uw team uitgaven kan coderen voor eenvoudige rapportage.\n' + '\n' + `Importeer ze automatisch door [uw boekhoudsoftware te verbinden](${workspaceAccountingLink}), of stel ze handmatig in via uw [werkruimte-instellingen](${workspaceCategoriesLink}).`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `Stel [tags](${workspaceMoreFeaturesLink}) in`, + title: ({workspaceTagsLink}) => `Stel [tags](${workspaceTagsLink}) in`, description: ({workspaceMoreFeaturesLink}) => 'Gebruik tags om extra uitgavendetails toe te voegen zoals projecten, klanten, locaties en afdelingen. Als u meerdere niveaus van tags nodig heeft, kunt u upgraden naar het Control-abonnement.\n' + '\n' + diff --git a/src/languages/pl.ts b/src/languages/pl.ts index 9317c6856407..3e90df86b03e 100644 --- a/src/languages/pl.ts +++ b/src/languages/pl.ts @@ -2376,14 +2376,14 @@ const translations = { }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => `Stel [categorieën](${workspaceCategoriesLink}) en [tags](${workspaceMoreFeaturesLink}) in`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => `Stel [categorieën](${workspaceCategoriesLink}) en [tags](${workspaceTagsLink}) in`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*Stel categorieën en tags in* zodat uw team uitgaven kan coderen voor eenvoudige rapportage.\n' + '\n' + `Importeer ze automatisch door [uw boekhoudsoftware te verbinden](${workspaceAccountingLink}), of stel ze handmatig in via uw [werkruimte-instellingen](${workspaceCategoriesLink}).`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `Stel [tags](${workspaceMoreFeaturesLink}) in`, + title: ({workspaceTagsLink}) => `Stel [tags](${workspaceTagsLink}) in`, description: ({workspaceMoreFeaturesLink}) => 'Gebruik tags om extra uitgavendetails toe te voegen zoals projecten, klanten, locaties en afdelingen. Als u meerdere niveaus van tags nodig heeft, kunt u upgraden naar het Control-abonnement.\n' + '\n' + diff --git a/src/languages/pt-BR.ts b/src/languages/pt-BR.ts index c67680318bb0..ce2b2dc33d37 100644 --- a/src/languages/pt-BR.ts +++ b/src/languages/pt-BR.ts @@ -2380,14 +2380,14 @@ const translations = { }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => `Configure [categorias](${workspaceCategoriesLink}) e [tags](${workspaceMoreFeaturesLink})`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => `Configure [categorias](${workspaceCategoriesLink}) e [tags](${workspaceTagsLink})`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*Configure categorias e tags* para que sua equipe possa categorizar despesas para relatórios fáceis.\n' + '\n' + `Importe-as automaticamente [conectando seu software de contabilidade](${workspaceAccountingLink}), ou configure-as manualmente nas [configurações do seu espaço de trabalho](${workspaceCategoriesLink}).`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `Configure [tags](${workspaceMoreFeaturesLink})`, + title: ({workspaceTagsLink}) => `Configure [tags](${workspaceTagsLink})`, description: ({workspaceMoreFeaturesLink}) => 'Use tags para adicionar detalhes extras de despesas, como projetos, clientes, locais e departamentos. Se você precisar de vários níveis de tags, pode fazer upgrade para o plano Control.\n' + '\n' + diff --git a/src/languages/zh-hans.ts b/src/languages/zh-hans.ts index 72cf43dc6000..ec593f2aca81 100644 --- a/src/languages/zh-hans.ts +++ b/src/languages/zh-hans.ts @@ -2351,15 +2351,15 @@ const translations = { `![Invite your team](${CONST.CLOUDFRONT_URL}/videos/walkthrough-invite_members-v2.mp4)`, }, setupCategoriesAndTags: { - title: ({workspaceCategoriesLink, workspaceMoreFeaturesLink}) => - `\u8bbe\u7f6e\u3010\u5206\u7c7b\u3011(${workspaceCategoriesLink})\u548c\u3010\u6807\u7b7e\u3011(${workspaceMoreFeaturesLink})`, + title: ({workspaceCategoriesLink, workspaceTagsLink}) => + `\u8bbe\u7f6e\u3010\u5206\u7c7b\u3011(${workspaceCategoriesLink})\u548c\u3010\u6807\u7b7e\u3011(${workspaceTagsLink})`, description: ({workspaceCategoriesLink, workspaceAccountingLink}) => '*\u8bbe\u7f6e\u5206\u7c7b\u548c\u6807\u7b7e*\uff0c\u4ee5\u4fbf\u60a8\u7684\u56e2\u961f\u53ef\u4ee5\u5bf9\u652f\u51fa\u8fdb\u884c\u7f16\u7801\uff0c\u4ee5\u4fbf\u4e8e\u62a5\u544a\u3002\n' + '\n' + `\u901a\u8fc7\u3010\u8fde\u63a5\u60a8\u7684\u4f1a\u8ba1\u8f6f\u4ef6\u3011(${workspaceAccountingLink})\u81ea\u52a8\u5bfc\u5165\u5b83\u4eec\uff0c\u6216\u5728\u60a8\u7684\u3010\u5de5\u4f5c\u533a\u8bbe\u7f6e\u3011(${workspaceCategoriesLink})\u4e2d\u624b\u52a8\u8bbe\u7f6e\u3002`, }, setupTagsTask: { - title: ({workspaceMoreFeaturesLink}) => `\u8bbe\u7f6e\u3010\u6807\u7b7e\u3011(${workspaceMoreFeaturesLink})`, + title: ({workspaceTagsLink}) => `\u8bbe\u7f6e\u3010\u6807\u7b7e\u3011(${workspaceTagsLink})`, description: ({workspaceMoreFeaturesLink}) => '\u4f7f\u7528\u6807\u7b7e\u6dfb\u52a0\u989d\u5916\u7684\u652f\u51fa\u8be6\u60c5\uff0c\u4f8b\u5982\u9879\u76ee\u3001\u5ba2\u6237\u3001\u5730\u70b9\u548c\u90e8\u95e8\u3002\u5982\u679c\u60a8\u9700\u8981\u591a\u7ea7\u6807\u7b7e\uff0c\u53ef\u4ee5\u5347\u7ea7\u5230 Control \u8ba1\u5212\u3002\n' + '\n' + diff --git a/src/libs/actions/Welcome/OnboardingFlow.ts b/src/libs/actions/Welcome/OnboardingFlow.ts index 7b538802944c..0859b94ce894 100644 --- a/src/libs/actions/Welcome/OnboardingFlow.ts +++ b/src/libs/actions/Welcome/OnboardingFlow.ts @@ -279,7 +279,7 @@ const getOnboardingMessages = (locale?: Locale) => { type: CONST.ONBOARDING_TASK_TYPE.SETUP_TAGS, autoCompleted: false, title: ({workspaceTagsLink}) => translate(resolvedLocale, 'onboarding.tasks.setupTagsTask.title', {workspaceTagsLink}), - description: ({workspaceTagsLink}) => translate(resolvedLocale, 'onboarding.tasks.setupTagsTask.description', {workspaceTagsLink}), + description: ({workspaceMoreFeaturesLink}) => translate(resolvedLocale, 'onboarding.tasks.setupTagsTask.description', {workspaceMoreFeaturesLink}), mediaAttributes: { [`${CONST.CLOUDFRONT_URL}/videos/walkthrough-tags-v2.mp4`]: `data-expensify-thumbnail-url="${CONST.CLOUDFRONT_URL}/images/walkthrough-tags.png" data-expensify-width="1920" data-expensify-height="1080"`, },