diff --git a/web/site/app/composables/sbcBreadcrumb.ts b/web/site/app/composables/sbcBreadcrumb.ts index 655d6de..5be7e1d 100644 --- a/web/site/app/composables/sbcBreadcrumb.ts +++ b/web/site/app/composables/sbcBreadcrumb.ts @@ -12,11 +12,11 @@ export function useBreadcrumbs () { bc.push({ label: t('sbcBreadcrumb.sbcHome'), to: '/' }) // Check for /products if (route.path.includes('/products') && !route.path.includes('/get-started')) { - bc.push({ label: t('sbcBreadcrumb.sbcProducts'), to: localePath('/products') }) + bc.push({ label: t('sbcBreadcrumb.sbcProductslist'), to: localePath('/products') }) } // Check for /products/get-started and include sub-paths like /account-setup if (route.path.includes('/products/get-started')) { - bc.push({ label: t('sbcBreadcrumb.sbcDocs'), to: localePath('/products/get-started') }) + bc.push({ label: t('sbcBreadcrumb.sbcProducts'), to: localePath('/products/get-started') }) } return bc diff --git a/web/site/app/locales/en-CA.ts b/web/site/app/locales/en-CA.ts index a59afd4..adc2bde 100644 --- a/web/site/app/locales/en-CA.ts +++ b/web/site/app/locales/en-CA.ts @@ -25,8 +25,8 @@ export default { backBtn: 'Go Back', arialabel: 'Breadcrumb', sbcHome: 'Service BC Connect', - sbcProducts: 'Products', - sbcDocs: 'Documentation' + sbcProductslist: 'Products List', + sbcProducts: 'Products' }, page: { notFound: {