Browse Source

Task/add i18n to introductions of resources page (#7682)

Add i18n
pull/7678/head^2
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
e553d32e11
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 12
      apps/client/src/app/pages/resources/overview/resources-overview.component.ts

12
apps/client/src/app/pages/resources/overview/resources-overview.component.ts

@ -13,26 +13,22 @@ import { RouterModule } from '@angular/router';
export class ResourcesOverviewComponent { export class ResourcesOverviewComponent {
public overviewItems = [ public overviewItems = [
{ {
description: description: $localize`Find quick answers to commonly asked questions about Ghostfolio in our Frequently Asked Questions (FAQ) section.`,
'Find quick answers to commonly asked questions about Ghostfolio in our Frequently Asked Questions (FAQ) section.',
routerLink: publicRoutes.faq.routerLink, routerLink: publicRoutes.faq.routerLink,
title: publicRoutes.faq.title title: publicRoutes.faq.title
}, },
{ {
description: description: $localize`Explore our guides to help you get started with investing and managing your finances.`,
'Explore our guides to help you get started with investing and managing your finances.',
routerLink: publicRoutes.resources.subRoutes.guides.routerLink, routerLink: publicRoutes.resources.subRoutes.guides.routerLink,
title: publicRoutes.resources.subRoutes.guides.title title: publicRoutes.resources.subRoutes.guides.title
}, },
{ {
description: description: $localize`Access various market resources and tools to stay informed about financial markets.`,
'Access various market resources and tools to stay informed about financial markets.',
routerLink: publicRoutes.resources.subRoutes.markets.routerLink, routerLink: publicRoutes.resources.subRoutes.markets.routerLink,
title: publicRoutes.resources.subRoutes.markets.title title: publicRoutes.resources.subRoutes.markets.title
}, },
{ {
description: description: $localize`Learn key financial terms and concepts in our comprehensive glossary.`,
'Learn key financial terms and concepts in our comprehensive glossary.',
routerLink: publicRoutes.resources.subRoutes.glossary.routerLink, routerLink: publicRoutes.resources.subRoutes.glossary.routerLink,
title: publicRoutes.resources.subRoutes.glossary.title title: publicRoutes.resources.subRoutes.glossary.title
} }

Loading…
Cancel
Save