diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index 08f5b66c0..dd14fef63 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 pricingRoutes } from '@ghostfolio/client/pages/pricing/routes'; // TODO import { routes as registerRoutes } from '@ghostfolio/client/pages/register/routes'; // TODO import { routes as resourcesRoutes } from '@ghostfolio/client/pages/resources/routes'; // TODO import { PageTitleStrategy } from '@ghostfolio/client/services/page-title.strategy'; @@ -13,6 +12,7 @@ export const paths = { features: $localize`features`, license: $localize`license`, markets: $localize`markets`, + pricing: $localize`pricing`, privacyPolicy: $localize`privacy-policy` }; @@ -99,13 +99,13 @@ const routes: Routes = [ (m) => m.PortfolioPageModule ) }, - ...pricingRoutes.map((path) => ({ - path, + { + path: paths.pricing, loadChildren: () => import('./pages/pricing/pricing-page.module').then( (m) => m.PricingPageModule ) - })), + }, ...registerRoutes.map((path) => ({ path, loadChildren: () => diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index fd7d5c673..e32902974 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -81,7 +81,7 @@ Open Startup
  • - Pricing + Pricing
  • Pricing
  • @@ -224,7 +224,7 @@ i18n mat-menu-item [ngClass]="{ 'font-weight-bold': currentRoute === 'pricing' }" - [routerLink]="['/pricing']" + [routerLink]="routerLinkPricing" >Pricing Pricing diff --git a/apps/client/src/app/components/home-summary/home-summary.component.ts b/apps/client/src/app/components/home-summary/home-summary.component.ts index 358fd1613..be015d84e 100644 --- a/apps/client/src/app/components/home-summary/home-summary.component.ts +++ b/apps/client/src/app/components/home-summary/home-summary.component.ts @@ -121,7 +121,7 @@ export class HomeSummaryComponent implements OnDestroy, OnInit { }); this.snackBarRef.onAction().subscribe(() => { - this.router.navigate(['/pricing']); + this.router.navigate(['/' + $localize`pricing`]); }); } diff --git a/apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts b/apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts index 73ddf1103..b33ce30a7 100644 --- a/apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts +++ b/apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts @@ -11,6 +11,8 @@ import { SubscriptionInterstitialDialogParams } from './interfaces/interfaces'; templateUrl: 'subscription-interstitial-dialog.html' }) export class SubscriptionInterstitialDialog { + public routerLinkPricing = ['/' + $localize`pricing`]; + public constructor( @Inject(MAT_DIALOG_DATA) public data: SubscriptionInterstitialDialogParams, public dialogRef: MatDialogRef diff --git a/apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html b/apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html index 6eab80b06..dea00bb18 100644 --- a/apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html +++ b/apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -56,7 +56,7 @@ Upgrade Plan diff --git a/apps/client/src/app/core/auth.guard.ts b/apps/client/src/app/core/auth.guard.ts index b8ea4a831..339a5d080 100644 --- a/apps/client/src/app/core/auth.guard.ts +++ b/apps/client/src/app/core/auth.guard.ts @@ -5,7 +5,6 @@ import { RouterStateSnapshot } from '@angular/router'; import { paths } from '@ghostfolio/client/app-routing.module'; -import { routes as pricingRoutes } from '@ghostfolio/client/pages/pricing/routes'; import { routes as registerRoutes } from '@ghostfolio/client/pages/register/routes'; import { routes as resourcesRoutes } from '@ghostfolio/client/pages/resources/routes'; import { DataService } from '@ghostfolio/client/services/data.service'; @@ -25,7 +24,7 @@ export class AuthGuard { `/${paths.markets}`, '/open', '/p', - ...pricingRoutes.map((route) => `/${route}`), + `/${paths.pricing}`, ...registerRoutes.map((route) => `/${route}`), ...resourcesRoutes.map((route) => `/${route}`) ]; diff --git a/apps/client/src/app/core/http-response.interceptor.ts b/apps/client/src/app/core/http-response.interceptor.ts index b9f60eb65..3beb2ad1d 100644 --- a/apps/client/src/app/core/http-response.interceptor.ts +++ b/apps/client/src/app/core/http-response.interceptor.ts @@ -77,7 +77,7 @@ export class HttpResponseInterceptor implements HttpInterceptor { }); this.snackBarRef.onAction().subscribe(() => { - this.router.navigate(['/pricing']); + this.router.navigate(['/' + $localize`pricing`]); }); } } else if (error.status === StatusCodes.INTERNAL_SERVER_ERROR) { 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 53e8cf9e6..3c7830e4d 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 @@ -9,4 +9,6 @@ import { RouterModule } from '@angular/router'; standalone: true, templateUrl: './hallo-ghostfolio-page.html' }) -export class HalloGhostfolioPageComponent {} +export class HalloGhostfolioPageComponent { + public routerLinkPricing = ['/' + $localize`pricing`]; +} 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 b5c535462..d3477b53a 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 @@ -119,7 +119,7 @@ Anlagestrategie? Ich freue mich über alle, die Ghostfolio ausprobieren. Bist du überzeugt vom Potential der Software? Jede Unterstützung für Ghostfolio ist willkommen. Sei es mit einer - Ghostfolio Premium + Ghostfolio Premium Subscription zur Finanzierung des Hostings, einem positiven Rating im Ghostfolio Premium + Ghostfolio Premium Subscription to finance the hosting, a positive rating in the

    My personal goal is to reach break-even with the Saas offering (Ghostfolio Premium) and regularly report about the progress and my learnings on this exciting journey. diff --git a/apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts b/apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts index 95b4a2b3d..eec7ce255 100644 --- a/apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts +++ b/apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -11,4 +11,5 @@ import { RouterModule } from '@angular/router'; }) export class FiveHundredStarsOnGitHubPageComponent { public routerLinkMarkets = ['/' + $localize`markets`]; + public routerLinkPricing = ['/' + $localize`pricing`]; } diff --git a/apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html b/apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html index 873b7a2e6..5b485e921 100644 --- a/apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html +++ b/apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html @@ -74,7 +74,7 @@ economic situation at this time, the goal set at the beginning of the year to build a sustainable business and reach break-even with the SaaS offering (Ghostfolio Premium) has been achieved. We will continue to leverage the revenue to further improve the fully managed cloud offering for our paying diff --git a/apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts b/apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts index af912cc65..bfb42f55c 100644 --- a/apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts +++ b/apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts @@ -12,4 +12,5 @@ import { GfPremiumIndicatorModule } from '@ghostfolio/ui/premium-indicator'; }) export class BlackFriday2022PageComponent { public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkPricing = ['/' + $localize`pricing`]; } diff --git a/apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html b/apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html index adba5025f..8da5f55b5 100644 --- a/apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html +++ b/apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html @@ -43,10 +43,10 @@

    Snap the limited Black Friday 2022 deal before it’s gone. For detailed information on plans and pricing, please visit our - pricing page. + pricing page.

    - Get the Deal

    diff --git a/apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts b/apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts index e23eb90ff..55813dc29 100644 --- a/apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts +++ b/apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts @@ -11,4 +11,5 @@ import { RouterModule } from '@angular/router'; }) export class ThousandStarsOnGitHubPageComponent { public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkPricing = ['/' + $localize`pricing`]; } diff --git a/apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html b/apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html index b6faaa1c6..f475f00da 100644 --- a/apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html +++ b/apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html @@ -92,7 +92,7 @@

    These self-hosting platforms allow users to run applications on their own hardware rather than rely on a - SaaS offering. As a result, + SaaS offering. As a result, Ghostfolio has become accessible to an even wider range of users who would like to take control of their wealth management.

    diff --git a/apps/client/src/app/pages/faq/faq-page.component.ts b/apps/client/src/app/pages/faq/faq-page.component.ts index 6e2c5b71d..6cf848f14 100644 --- a/apps/client/src/app/pages/faq/faq-page.component.ts +++ b/apps/client/src/app/pages/faq/faq-page.component.ts @@ -12,6 +12,7 @@ import { Subject, takeUntil } from 'rxjs'; export class FaqPageComponent implements OnDestroy { public routerLinkFeatures = ['/' + $localize`features`]; public routerLinkMarkets = ['/' + $localize`markets`]; + public routerLinkPricing = ['/' + $localize`pricing`]; public user: User; private unsubscribeSubject = new Subject(); diff --git a/apps/client/src/app/pages/faq/faq-page.html b/apps/client/src/app/pages/faq/faq-page.html index ad73a3261..b0adcad5e 100644 --- a/apps/client/src/app/pages/faq/faq-page.html +++ b/apps/client/src/app/pages/faq/faq-page.html @@ -93,7 +93,7 @@ world. The source code is fully available as open source software (OSS). Thanks to our generous - Ghostfolio Premium users and + Ghostfolio Premium users and sponsors we have the ability to run a free, limited plan for novice investors. Yes, it is! Our - pricing page details everything you - get for free.pricing page details + everything you get for free. @@ -127,7 +127,8 @@ > By offering Ghostfolio Premium, a + >By offering + Ghostfolio Premium, a subscription plan with a managed hosting service and enhanced features, we fund our business while providing added value to our users. Ghostfolio Premium is a fully + >Ghostfolio Premium is a fully managed Ghostfolio cloud offering for ambitious investors. The revenue is used to cover the hosting infrastructure and to fund the ongoing development. It is the Open Source code base with some extras like the @@ -156,9 +157,9 @@ > Yes, you can try - Ghostfolio Premium by signing up - for Ghostfolio and applying for a trial (see “My Ghostfolio”). It is - easy, free and there is no commitment. You can stop using it at any + Ghostfolio Premium by signing + up for Ghostfolio and applying for a trial (see “My Ghostfolio”). It + is easy, free and there is no commitment. You can stop using it at any time. @@ -214,8 +215,9 @@ Any support for Ghostfolio is welcome. Be it with a - Ghostfolio Premium subscription to - finance the hosting infrastructure, a positive rating in the + Ghostfolio Premium + subscription to finance the hosting infrastructure, a positive rating + in the Google Play StoreMembership
    - {{ user?.subscription?.type }} haeufig-gestellte-fragen apps/client/src/app/app-routing.module.ts - 12 + 11 apps/client/src/app/app.component.ts @@ -7658,7 +7658,7 @@ features apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -7802,7 +7802,7 @@ ueber-uns apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7970,7 +7970,7 @@ lizenz apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -7986,7 +7986,7 @@ maerkte apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -8001,6 +8001,58 @@ 14 + + pricing + preise + + apps/client/src/app/app-routing.module.ts + 15 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 + + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 + + + apps/client/src/app/core/http-response.interceptor.ts + 80 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 15 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index feb47ab22..efb3e4857 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 - 12 + 11 apps/client/src/app/app.component.ts @@ -7659,7 +7659,7 @@ funcionalidades apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -7803,7 +7803,7 @@ sobre apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7971,7 +7971,7 @@ licencia apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -7987,7 +7987,7 @@ mercados apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -8002,6 +8002,58 @@ 14 + + pricing + precios + + apps/client/src/app/app-routing.module.ts + 15 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 + + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 + + + apps/client/src/app/core/http-response.interceptor.ts + 80 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 15 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index b31061945..26c910dc7 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 - 12 + 11 apps/client/src/app/app.component.ts @@ -7658,7 +7658,7 @@ fonctionnalites apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -7802,7 +7802,7 @@ a-propos apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7970,7 +7970,7 @@ licence apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -7986,7 +7986,7 @@ marches apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -8001,6 +8001,58 @@ 14 + + pricing + prix + + apps/client/src/app/app-routing.module.ts + 15 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 + + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 + + + apps/client/src/app/core/http-response.interceptor.ts + 80 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 15 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index f70df9e4a..9ed7d31bf 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 - 12 + 11 apps/client/src/app/app.component.ts @@ -7659,7 +7659,7 @@ funzionalita apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -7803,7 +7803,7 @@ informazioni-su apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7971,7 +7971,7 @@ licenza apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -7987,7 +7987,7 @@ mercati apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -8002,6 +8002,58 @@ 14 + + pricing + prezzi + + apps/client/src/app/app-routing.module.ts + 15 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 + + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 + + + apps/client/src/app/core/http-response.interceptor.ts + 80 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 15 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 1f6ad0ca1..42882b1af 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 - 12 + 11 apps/client/src/app/app.component.ts @@ -7658,7 +7658,7 @@ kenmerken apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -7802,7 +7802,7 @@ over apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7970,7 +7970,7 @@ licentie apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -7986,7 +7986,7 @@ markten apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -8001,6 +8001,58 @@ 14 + + pricing + prijzen + + apps/client/src/app/app-routing.module.ts + 15 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 + + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 + + + apps/client/src/app/core/http-response.interceptor.ts + 80 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 15 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 668440b68..851852bad 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 - 12 + 11 apps/client/src/app/app.component.ts @@ -7658,7 +7658,7 @@ funcionalidades apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -7802,7 +7802,7 @@ sobre apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7970,7 +7970,7 @@ licenca apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -7986,7 +7986,7 @@ mercados apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -8001,6 +8001,58 @@ 14 + + pricing + precos + + apps/client/src/app/app-routing.module.ts + 15 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 + + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 + + + apps/client/src/app/core/http-response.interceptor.ts + 80 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 15 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 7c2d55dc5..72c4dece7 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 - 12 + 11 apps/client/src/app/app.component.ts @@ -7150,7 +7150,7 @@ features apps/client/src/app/app-routing.module.ts - 13 + 12 apps/client/src/app/app.component.ts @@ -7293,7 +7293,7 @@ about apps/client/src/app/app-routing.module.ts - 11 + 10 apps/client/src/app/app.component.ts @@ -7444,7 +7444,7 @@ license apps/client/src/app/app-routing.module.ts - 14 + 13 apps/client/src/app/app.component.ts @@ -7474,7 +7474,7 @@ markets apps/client/src/app/app-routing.module.ts - 15 + 14 apps/client/src/app/app.component.ts @@ -7489,6 +7489,57 @@ 14 + + pricing + + apps/client/src/app/app-routing.module.ts + 15 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 + + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 + + + apps/client/src/app/core/http-response.interceptor.ts + 80 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 15 + + - \ No newline at end of file +