From 1a7ec33fd6088d19886579d8c84b7214c3d3d509 Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Sun, 20 Aug 2023 09:07:12 +0200 Subject: [PATCH] Localize resources path --- apps/client/src/app/app-routing.module.ts | 10 +- apps/client/src/app/app.component.html | 2 +- apps/client/src/app/app.component.ts | 3 +- .../components/header/header.component.html | 4 +- apps/client/src/app/core/auth.guard.ts | 3 +- .../hallo-ghostfolio-page.component.ts | 1 + .../hallo-ghostfolio-page.html | 2 +- .../hello-ghostfolio-page.component.ts | 1 + .../hello-ghostfolio-page.html | 2 +- ...get-my-finances-in-order-page.component.ts | 4 +- ...ow-do-i-get-my-finances-in-order-page.html | 6 +- ...otential-with-ghostfolio-page.component.ts | 1 + ...ancial-potential-with-ghostfolio-page.html | 10 +- .../src/app/pages/features/features-page.html | 2 +- .../personal-finance-tools-page.component.ts | 1 + .../personal-finance-tools-page.html | 2 +- .../product-page-template.html | 2 +- .../products/altoo-page.component.ts | 4 + .../products/copilot-money-page.component.ts | 4 + .../products/delta-page.component.ts | 4 + .../products/divvydiary-page.component.ts | 4 + .../products/exirio-page.component.ts | 4 + .../products/folishare-page.component.ts | 4 + .../products/getquin-page.component.ts | 4 + .../products/gospatz-page.component.ts | 4 + .../products/justetf-page.component.ts | 4 + .../products/kubera-page.component.ts | 4 + .../products/markets.sh-page.component.ts | 4 + .../products/maybe-finance-page.component.ts | 4 + .../products/monse-page.component.ts | 4 + .../products/parqet-page.component.ts | 4 + .../products/plannix-page.component.ts | 4 + ...rtfolio-dividend-tracker-page.component.ts | 4 + .../products/portseido-page.component.ts | 4 + .../products/projectionlab-page.component.ts | 4 + .../products/seeking-alpha-page.component.ts | 4 + .../products/sharesight-page.component.ts | 4 + .../simple-portfolio-page.component.ts | 4 + .../snowball-analytics-page.component.ts | 4 + .../products/sumio-page.component.ts | 4 + .../products/utluna-page.component.ts | 4 + .../products/yeekatee-page.component.ts | 4 + .../resources/resources-page.component.ts | 4 + .../app/pages/resources/resources-page.html | 2 +- apps/client/src/app/pages/resources/routes.ts | 9 - apps/client/src/locales/messages.de.xlf | 158 ++++++++++++++++-- apps/client/src/locales/messages.es.xlf | 156 +++++++++++++++-- apps/client/src/locales/messages.fr.xlf | 156 +++++++++++++++-- apps/client/src/locales/messages.it.xlf | 156 +++++++++++++++-- apps/client/src/locales/messages.nl.xlf | 156 +++++++++++++++-- apps/client/src/locales/messages.pt.xlf | 156 +++++++++++++++-- apps/client/src/locales/messages.xlf | 157 +++++++++++++++-- 52 files changed, 1159 insertions(+), 107 deletions(-) delete mode 100644 apps/client/src/app/pages/resources/routes.ts diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index 46aa05729..f82bad864 100644 --- a/apps/client/src/app/app-routing.module.ts +++ b/apps/client/src/app/app-routing.module.ts @@ -1,6 +1,5 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes, TitleStrategy } from '@angular/router'; -import { routes as resourcesRoutes } from '@ghostfolio/client/pages/resources/routes'; // TODO import { PageTitleStrategy } from '@ghostfolio/client/services/page-title.strategy'; import { ModulePreloadService } from './core/module-preload.service'; @@ -13,7 +12,8 @@ export const paths = { markets: $localize`markets`, pricing: $localize`pricing`, privacyPolicy: $localize`privacy-policy`, - register: $localize`register` + register: $localize`register`, + resources: $localize`resources` }; const routes: Routes = [ @@ -113,13 +113,13 @@ const routes: Routes = [ (m) => m.RegisterPageModule ) }, - ...resourcesRoutes.map((path) => ({ - path, + { + path: paths.resources, loadChildren: () => import('./pages/resources/resources-page.module').then( (m) => m.ResourcesPageModule ) - })), + }, { path: 'start', loadChildren: () => diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index 36ac361c1..c9457cfc0 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -55,7 +55,7 @@
  • Markets
  • -
  • Resources
  • +
  • Resources
  • diff --git a/apps/client/src/app/app.component.ts b/apps/client/src/app/app.component.ts index 35488e86d..dd6240d98 100644 --- a/apps/client/src/app/app.component.ts +++ b/apps/client/src/app/app.component.ts @@ -50,6 +50,7 @@ export class AppComponent implements OnDestroy, OnInit { public routerLinkMarkets = ['/' + $localize`markets`]; public routerLinkPricing = ['/' + $localize`pricing`]; public routerLinkRegister = ['/' + $localize`register`]; + public routerLinkResources = ['/' + $localize`resources`]; public showFooter = false; public user: User; public version = environment.version; @@ -110,8 +111,8 @@ export class AppComponent implements OnDestroy, OnInit { this.currentRoute === 'open' || this.currentRoute === 'p' || this.currentRoute === this.routerLinkPricing[0].slice(1) || - this.currentRoute === 'resources' || this.currentRoute === this.routerLinkRegister[0].slice(1) || + this.currentRoute === this.routerLinkResources[0].slice(1) || this.currentRoute === 'start') && this.deviceType !== 'mobile'; diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index 849cb8ccd..a247455b7 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -72,7 +72,7 @@ 'font-weight-bold': currentRoute === 'resources', 'text-decoration-underline': currentRoute === 'resources' }" - [routerLink]="['/resources']" + [routerLink]="[routerLinkResources]" >Resources @@ -212,7 +212,7 @@ [ngClass]="{ 'font-weight-bold': currentRoute === 'resources' }" - [routerLink]="['/resources']" + [routerLink]="routerLinkResources" >Resources `/${route}`) + `/${paths.resources}` ]; constructor( diff --git a/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts b/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts index 3c7830e4d..7947d90b1 100644 --- a/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts +++ b/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -11,4 +11,5 @@ import { RouterModule } from '@angular/router'; }) export class HalloGhostfolioPageComponent { public routerLinkPricing = ['/' + $localize`pricing`]; + public routerLinkResources = ['/' + $localize`resources`]; } diff --git a/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html b/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html index d3477b53a..b71d65154 100644 --- a/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html +++ b/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -19,7 +19,7 @@ Aufgrund der steigenden Inflation und den Negativzinsen befasse ich mich seit einiger Zeit, wie ich mein Vermögen möglichst diversifiziert anlegen kann. Konkret verfolge ich eine - Buy and Hold Strategie mit + Buy and Hold Strategie mit Investitionen in verschiedene Anlageklassen verteilt auf unterschiedliche Plattformen. Deshalb suchte ich nach einer App, die mein Portfolio ganzheitlich zusammenfasst. Bei meiner diff --git a/apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts b/apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts index 935db8809..18aceabe9 100644 --- a/apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts +++ b/apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts @@ -11,4 +11,5 @@ import { RouterModule } from '@angular/router'; }) export class HelloGhostfolioPageComponent { public routerLinkPricing = ['/' + $localize`pricing`]; + public routerLinkResources = ['/' + $localize`resources`]; } diff --git a/apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html b/apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html index a405be60d..88cbd4a78 100644 --- a/apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html +++ b/apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -19,7 +19,7 @@ Due to rising inflation and negative interest rates, I have been looking for some time at how I can invest my assets in the most diversified way possible. Specifically, I follow a - buy and hold strategy with + buy and hold strategy with investments in different asset classes spread across different platforms. Therefore, I was looking for an app that would holistically aggregate my portfolio. During my research on the diff --git a/apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts b/apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts index 0f25ca72e..ccca0f27c 100644 --- a/apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts +++ b/apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts @@ -9,4 +9,6 @@ import { RouterModule } from '@angular/router'; standalone: true, templateUrl: './how-do-i-get-my-finances-in-order-page.html' }) -export class HowDoIGetMyFinancesInOrderPageComponent {} +export class HowDoIGetMyFinancesInOrderPageComponent { + public routerLinkResources = ['/' + $localize`resources`]; +} diff --git a/apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html b/apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html index a9c0085fe..bbfbec7ff 100644 --- a/apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html +++ b/apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html @@ -9,9 +9,9 @@

    Before you can think of - long-term investing, you have - to get your finances in order. Take a look at Peter's journey to see - how you can achieve it, too. + long-term investing, you + have to get your finances in order. Take a look at Peter's journey + to see how you can achieve it, too.

    Peter enjoys life, but sometimes he overspends a bit. He realizes it diff --git a/apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts b/apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts index bb69a4955..4e7e602a2 100644 --- a/apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts +++ b/apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts @@ -11,4 +11,5 @@ import { RouterModule } from '@angular/router'; }) export class UnlockYourFinancialPotentialWithGhostfolioPageComponent { public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkResources = ['/' + $localize`resources`]; } diff --git a/apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html b/apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html index f9c7a2f56..5d9cbb5f7 100644 --- a/apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html +++ b/apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html @@ -44,10 +44,10 @@

    Empowering Buy & Hold Strategies

    For those committed to a - buy & hold strategy, Ghostfolio - provides an intuitive interface to monitor long-term investments. - Users can track performance over time, gaining insights into - portfolio growth and stability. With strong visualizations and + buy & hold strategy, + Ghostfolio provides an intuitive interface to monitor long-term + investments. Users can track performance over time, gaining insights + into portfolio growth and stability. With strong visualizations and reporting features, Ghostfolio equips users to make well-informed decisions aligned with their long-term investment goals. @@ -91,7 +91,7 @@

    Driving Financial Independence (FIRE)

    Achieving - financial independence + financial independence including early retirement (FIRE

    Check the current market mood (Fear & Greed Index) within the app.

    diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts index 5461116a3..18ea65e8d 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts +++ b/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -13,6 +13,7 @@ export class PersonalFinanceToolsPageComponent implements OnDestroy { public products = products.filter(({ key }) => { return key !== 'ghostfolio'; }); + public resourcesPath = '/' + $localize`resources`; public routerLinkAbout = ['/' + $localize`about`]; private unsubscribeSubject = new Subject(); diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html b/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html index 83e6f0fe1..20f603eb7 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html +++ b/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html @@ -29,7 +29,7 @@
    diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html b/apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html index 8d7c5e581..81cc86795 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html +++ b/apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -282,7 +282,7 @@
    - Personal Finance Tools →
    diff --git a/apps/client/src/app/pages/resources/routes.ts b/apps/client/src/app/pages/resources/routes.ts deleted file mode 100644 index acdf9cdfc..000000000 --- a/apps/client/src/app/pages/resources/routes.ts +++ /dev/null @@ -1,9 +0,0 @@ -export const routes = [ - 'resources', - ///// - 'bronnen', - 'recursos', - 'ressourcen', - 'ressources', - 'risorse' -] as const; diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 36aeffa19..607aeee1b 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -7642,7 +7642,7 @@ haeufig-gestellte-fragen apps/client/src/app/app-routing.module.ts - 10 + 9 apps/client/src/app/app.component.ts @@ -7658,7 +7658,7 @@ features apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7802,7 +7802,7 @@ ueber-uns apps/client/src/app/app-routing.module.ts - 9 + 8 apps/client/src/app/app.component.ts @@ -7846,7 +7846,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 16 + 17 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts @@ -7954,7 +7954,7 @@ datenschutzbestimmungen apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -7970,7 +7970,7 @@ lizenz apps/client/src/app/app-routing.module.ts - 12 + 11 apps/client/src/app/app.component.ts @@ -7986,7 +7986,7 @@ maerkte apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -8003,10 +8003,10 @@ pricing - preise + preise apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -8058,7 +8058,7 @@ registrierung apps/client/src/app/app-routing.module.ts - 16 + 15 apps/client/src/app/app.component.ts @@ -8070,7 +8070,7 @@ apps/client/src/app/core/auth.guard.ts - 54 + 53 apps/client/src/app/pages/faq/faq-page.component.ts @@ -8089,6 +8089,142 @@ 33 + + resources + ressourcen + + apps/client/src/app/app-routing.module.ts + 16 + + + apps/client/src/app/app.component.ts + 53 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 16 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 28 + + + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index d85121193..d1f0621a7 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -7643,7 +7643,7 @@ preguntas-mas-frecuentes apps/client/src/app/app-routing.module.ts - 10 + 9 apps/client/src/app/app.component.ts @@ -7659,7 +7659,7 @@ funcionalidades apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7803,7 +7803,7 @@ sobre apps/client/src/app/app-routing.module.ts - 9 + 8 apps/client/src/app/app.component.ts @@ -7847,7 +7847,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 16 + 17 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts @@ -7955,7 +7955,7 @@ politica-de-privacidad apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -7971,7 +7971,7 @@ licencia apps/client/src/app/app-routing.module.ts - 12 + 11 apps/client/src/app/app.component.ts @@ -7987,7 +7987,7 @@ mercados apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -8007,7 +8007,7 @@ precios apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -8059,7 +8059,7 @@ registro apps/client/src/app/app-routing.module.ts - 16 + 15 apps/client/src/app/app.component.ts @@ -8071,7 +8071,7 @@ apps/client/src/app/core/auth.guard.ts - 54 + 53 apps/client/src/app/pages/faq/faq-page.component.ts @@ -8090,6 +8090,142 @@ 33 + + resources + recursos + + apps/client/src/app/app-routing.module.ts + 16 + + + apps/client/src/app/app.component.ts + 53 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 16 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 28 + + + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 7b8f7b8ff..b3ba9511e 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -7642,7 +7642,7 @@ foire-aux-questions apps/client/src/app/app-routing.module.ts - 10 + 9 apps/client/src/app/app.component.ts @@ -7658,7 +7658,7 @@ fonctionnalites apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7802,7 +7802,7 @@ a-propos apps/client/src/app/app-routing.module.ts - 9 + 8 apps/client/src/app/app.component.ts @@ -7846,7 +7846,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 16 + 17 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts @@ -7954,7 +7954,7 @@ politique-de-confidentialite apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -7970,7 +7970,7 @@ licence apps/client/src/app/app-routing.module.ts - 12 + 11 apps/client/src/app/app.component.ts @@ -7986,7 +7986,7 @@ marches apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -8006,7 +8006,7 @@ prix apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -8058,7 +8058,7 @@ enregistrement apps/client/src/app/app-routing.module.ts - 16 + 15 apps/client/src/app/app.component.ts @@ -8070,7 +8070,7 @@ apps/client/src/app/core/auth.guard.ts - 54 + 53 apps/client/src/app/pages/faq/faq-page.component.ts @@ -8089,6 +8089,142 @@ 33 + + resources + ressources + + apps/client/src/app/app-routing.module.ts + 16 + + + apps/client/src/app/app.component.ts + 53 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 16 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 28 + + + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 3df1c6c38..a81b36344 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -7643,7 +7643,7 @@ domande-piu-frequenti apps/client/src/app/app-routing.module.ts - 10 + 9 apps/client/src/app/app.component.ts @@ -7659,7 +7659,7 @@ funzionalita apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7803,7 +7803,7 @@ informazioni-su apps/client/src/app/app-routing.module.ts - 9 + 8 apps/client/src/app/app.component.ts @@ -7847,7 +7847,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 16 + 17 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts @@ -7955,7 +7955,7 @@ informativa-sulla-privacy apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -7971,7 +7971,7 @@ licenza apps/client/src/app/app-routing.module.ts - 12 + 11 apps/client/src/app/app.component.ts @@ -7987,7 +7987,7 @@ mercati apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -8007,7 +8007,7 @@ prezzi apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -8059,7 +8059,7 @@ iscrizione apps/client/src/app/app-routing.module.ts - 16 + 15 apps/client/src/app/app.component.ts @@ -8071,7 +8071,7 @@ apps/client/src/app/core/auth.guard.ts - 54 + 53 apps/client/src/app/pages/faq/faq-page.component.ts @@ -8090,6 +8090,142 @@ 33 + + resources + risorse + + apps/client/src/app/app-routing.module.ts + 16 + + + apps/client/src/app/app.component.ts + 53 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 16 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 28 + + + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 6c5cfe9ee..4467db408 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -7642,7 +7642,7 @@ vaak-gestelde-vragen apps/client/src/app/app-routing.module.ts - 10 + 9 apps/client/src/app/app.component.ts @@ -7658,7 +7658,7 @@ kenmerken apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7802,7 +7802,7 @@ over apps/client/src/app/app-routing.module.ts - 9 + 8 apps/client/src/app/app.component.ts @@ -7846,7 +7846,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 16 + 17 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts @@ -7954,7 +7954,7 @@ privacybeleid apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -7970,7 +7970,7 @@ licentie apps/client/src/app/app-routing.module.ts - 12 + 11 apps/client/src/app/app.component.ts @@ -7986,7 +7986,7 @@ markten apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -8006,7 +8006,7 @@ prijzen apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -8058,7 +8058,7 @@ registratie apps/client/src/app/app-routing.module.ts - 16 + 15 apps/client/src/app/app.component.ts @@ -8070,7 +8070,7 @@ apps/client/src/app/core/auth.guard.ts - 54 + 53 apps/client/src/app/pages/faq/faq-page.component.ts @@ -8089,6 +8089,142 @@ 33 + + resources + bronnen + + apps/client/src/app/app-routing.module.ts + 16 + + + apps/client/src/app/app.component.ts + 53 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 16 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 28 + + + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index d3303a9bb..fe5a3ed07 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -7642,7 +7642,7 @@ perguntas-mais-frequentes apps/client/src/app/app-routing.module.ts - 10 + 9 apps/client/src/app/app.component.ts @@ -7658,7 +7658,7 @@ funcionalidades apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7802,7 +7802,7 @@ sobre apps/client/src/app/app-routing.module.ts - 9 + 8 apps/client/src/app/app.component.ts @@ -7846,7 +7846,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 16 + 17 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts @@ -7954,7 +7954,7 @@ politica-de-privacidade apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -7970,7 +7970,7 @@ licenca apps/client/src/app/app-routing.module.ts - 12 + 11 apps/client/src/app/app.component.ts @@ -7986,7 +7986,7 @@ mercados apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -8006,7 +8006,7 @@ precos apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -8058,7 +8058,7 @@ registo apps/client/src/app/app-routing.module.ts - 16 + 15 apps/client/src/app/app.component.ts @@ -8070,7 +8070,7 @@ apps/client/src/app/core/auth.guard.ts - 54 + 53 apps/client/src/app/pages/faq/faq-page.component.ts @@ -8089,6 +8089,142 @@ 33 + + resources + recursos + + apps/client/src/app/app-routing.module.ts + 16 + + + apps/client/src/app/app.component.ts + 53 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 16 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 28 + + + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 1f7dca547..a20df39f3 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -7135,7 +7135,7 @@ faq apps/client/src/app/app-routing.module.ts - 10 + 9 apps/client/src/app/app.component.ts @@ -7150,7 +7150,7 @@ features apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7293,7 +7293,7 @@ about apps/client/src/app/app-routing.module.ts - 9 + 8 apps/client/src/app/app.component.ts @@ -7337,7 +7337,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 16 + 17 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts @@ -7444,7 +7444,7 @@ license apps/client/src/app/app-routing.module.ts - 12 + 11 apps/client/src/app/app.component.ts @@ -7459,7 +7459,7 @@ privacy-policy apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -7474,7 +7474,7 @@ markets apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -7493,7 +7493,7 @@ pricing apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -7544,7 +7544,7 @@ register apps/client/src/app/app-routing.module.ts - 16 + 15 apps/client/src/app/app.component.ts @@ -7556,7 +7556,7 @@ apps/client/src/app/core/auth.guard.ts - 54 + 53 apps/client/src/app/pages/faq/faq-page.component.ts @@ -7575,6 +7575,141 @@ 33 + + resources + + apps/client/src/app/app-routing.module.ts + 16 + + + apps/client/src/app/app.component.ts + 53 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 16 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 28 + + + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + - \ No newline at end of file +