From 4955555ddddc6019674d95574704f3a95513dc40 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 19 Aug 2023 08:49:31 +0200 Subject: [PATCH] Release 1.301.1 (#2247) --- CHANGELOG.md | 2 +- apps/client/src/app/app-routing.module.ts | 85 ++++--------------- .../admin-settings.component.html | 4 +- .../components/home-market/home-market.html | 2 +- .../components/home-summary/home-summary.html | 2 +- apps/client/src/app/core/auth.guard.ts | 25 +++--- .../pages/about/changelog/changelog-page.html | 2 +- .../app/pages/about/license/license-page.html | 2 +- .../oss-friends/oss-friends-page.component.ts | 2 +- .../about/oss-friends/oss-friends-page.html | 11 ++- .../about/overview/about-overview-page.html | 2 +- .../privacy-policy/privacy-policy-page.html | 2 +- apps/client/src/app/pages/about/routes.ts | 9 ++ .../src/app/pages/accounts/accounts-page.html | 2 +- apps/client/src/app/pages/blog/blog-page.html | 2 +- apps/client/src/app/pages/faq/faq-page.html | 4 +- apps/client/src/app/pages/faq/routes.ts | 10 +++ .../src/app/pages/features/features-page.html | 13 ++- apps/client/src/app/pages/features/routes.ts | 8 ++ apps/client/src/app/pages/markets/routes.ts | 9 ++ apps/client/src/app/pages/open/open-page.html | 4 +- .../portfolio/activities/activities-page.html | 2 +- .../allocations/allocations-page.html | 2 +- .../portfolio/analysis/analysis-page.html | 2 +- .../app/pages/portfolio/fire/fire-page.html | 4 +- .../portfolio/holdings/holdings-page.html | 2 +- .../src/app/pages/pricing/pricing-page.html | 2 +- apps/client/src/app/pages/pricing/routes.ts | 10 +++ .../src/app/pages/public/public-page.html | 4 +- apps/client/src/app/pages/register/routes.ts | 10 +++ .../personal-finance-tools-page.html | 4 +- .../app/pages/resources/resources-page.html | 2 +- apps/client/src/app/pages/resources/routes.ts | 9 ++ .../pages/user-account/user-account-page.html | 4 +- apps/client/src/locales/messages.de.xlf | 70 ++++++++++----- apps/client/src/locales/messages.es.xlf | 70 ++++++++++----- apps/client/src/locales/messages.fr.xlf | 70 ++++++++++----- apps/client/src/locales/messages.it.xlf | 70 ++++++++++----- apps/client/src/locales/messages.nl.xlf | 70 ++++++++++----- apps/client/src/locales/messages.pt.xlf | 70 ++++++++++----- apps/client/src/locales/messages.xlf | 67 ++++++++++----- package.json | 2 +- 42 files changed, 467 insertions(+), 281 deletions(-) create mode 100644 apps/client/src/app/pages/about/routes.ts create mode 100644 apps/client/src/app/pages/faq/routes.ts create mode 100644 apps/client/src/app/pages/features/routes.ts create mode 100644 apps/client/src/app/pages/markets/routes.ts create mode 100644 apps/client/src/app/pages/pricing/routes.ts create mode 100644 apps/client/src/app/pages/register/routes.ts create mode 100644 apps/client/src/app/pages/resources/routes.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index 142e0a9ca..53154e038 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 1.301.0 - 2023-08-18 +## 1.301.1 - 2023-08-19 ### Added diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index 7ff6ead61..b5548afd4 100644 --- a/apps/client/src/app/app-routing.module.ts +++ b/apps/client/src/app/app-routing.module.ts @@ -1,19 +1,18 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes, TitleStrategy } from '@angular/router'; +import { routes as aboutRoutes } from '@ghostfolio/client/pages/about/routes'; +import { routes as faqRoutes } from '@ghostfolio/client/pages/faq/routes'; +import { routes as featuresRoutes } from '@ghostfolio/client/pages/features/routes'; +import { routes as marketsRoutes } from '@ghostfolio/client/pages/markets/routes'; +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 { PageTitleStrategy } from '@ghostfolio/client/services/page-title.strategy'; import { ModulePreloadService } from './core/module-preload.service'; const routes: Routes = [ - ...[ - 'about', - ///// - 'a-propos', - 'informazioni-su', - 'over', - 'sobre', - 'ueber-uns' - ].map((path) => ({ + ...aboutRoutes.map((path) => ({ path, loadChildren: () => import('./pages/about/about-page.module').then((m) => m.AboutPageModule) @@ -42,38 +41,22 @@ const routes: Routes = [ loadChildren: () => import('./pages/auth/auth-page.module').then((m) => m.AuthPageModule) }, - ...['blog'].map((path) => ({ - path, + { + path: 'blog', loadChildren: () => import('./pages/blog/blog-page.module').then((m) => m.BlogPageModule) - })), + }, { path: 'demo', loadChildren: () => import('./pages/demo/demo-page.module').then((m) => m.DemoPageModule) }, - ...[ - 'faq', - ///// - 'domande-piu-frequenti', - 'foire-aux-questions', - 'haeufig-gestellte-fragen', - 'perguntas-mais-frequentes', - 'preguntas-mas-frecuentes', - 'vaak-gestelde-vragen' - ].map((path) => ({ + ...faqRoutes.map((path) => ({ path, loadChildren: () => import('./pages/faq/faq-page.module').then((m) => m.FaqPageModule) })), - ...[ - 'features', - ///// - 'fonctionnalites', - 'funcionalidades', - 'funzionalita', - 'kenmerken' - ].map((path) => ({ + ...featuresRoutes.map((path) => ({ path, loadChildren: () => import('./pages/features/features-page.module').then( @@ -85,15 +68,7 @@ const routes: Routes = [ loadChildren: () => import('./pages/home/home-page.module').then((m) => m.HomePageModule) }, - ...[ - 'markets', - ///// - 'maerkte', - 'marches', - 'markten', - 'mercados', - 'mercati' - ].map((path) => ({ + ...marketsRoutes.map((path) => ({ path, loadChildren: () => import('./pages/markets/markets-page.module').then( @@ -119,47 +94,21 @@ const routes: Routes = [ (m) => m.PortfolioPageModule ) }, - ...[ - 'pricing', - ///// - 'precios', - 'precos', - 'preise', - 'prezzi', - 'prijzen', - 'prix' - ].map((path) => ({ + ...pricingRoutes.map((path) => ({ path, loadChildren: () => import('./pages/pricing/pricing-page.module').then( (m) => m.PricingPageModule ) })), - ...[ - 'register', - ///// - 'enregistrement', - 'iscrizione', - 'registo', - 'registratie', - 'registrierung', - 'registro' - ].map((path) => ({ + ...registerRoutes.map((path) => ({ path, loadChildren: () => import('./pages/register/register-page.module').then( (m) => m.RegisterPageModule ) })), - ...[ - 'resources', - ///// - 'bronnen', - 'recursos', - 'ressourcen', - 'ressources', - 'risorse' - ].map((path) => ({ + ...resourcesRoutes.map((path) => ({ path, loadChildren: () => import('./pages/resources/resources-page.module').then( diff --git a/apps/client/src/app/components/admin-settings/admin-settings.component.html b/apps/client/src/app/components/admin-settings/admin-settings.component.html index aa4395b27..6f23a4056 100644 --- a/apps/client/src/app/components/admin-settings/admin-settings.component.html +++ b/apps/client/src/app/components/admin-settings/admin-settings.component.html @@ -1,14 +1,14 @@
-

Platforms

+

Platforms

diff --git a/apps/client/src/app/components/home-market/home-market.html b/apps/client/src/app/components/home-market/home-market.html index cf6603be2..377050e47 100644 --- a/apps/client/src/app/components/home-market/home-market.html +++ b/apps/client/src/app/components/home-market/home-market.html @@ -1,5 +1,5 @@
-

Markets

+

Markets

diff --git a/apps/client/src/app/components/home-summary/home-summary.html b/apps/client/src/app/components/home-summary/home-summary.html index cb6050992..b75fe5aab 100644 --- a/apps/client/src/app/components/home-summary/home-summary.html +++ b/apps/client/src/app/components/home-summary/home-summary.html @@ -1,5 +1,5 @@
-

Summary

+

Summary

diff --git a/apps/client/src/app/core/auth.guard.ts b/apps/client/src/app/core/auth.guard.ts index 079fb816b..f5ee34f52 100644 --- a/apps/client/src/app/core/auth.guard.ts +++ b/apps/client/src/app/core/auth.guard.ts @@ -4,6 +4,13 @@ import { Router, RouterStateSnapshot } from '@angular/router'; +import { routes as aboutRoutes } from '@ghostfolio/client/pages/about/routes'; +import { routes as faqRoutes } from '@ghostfolio/client/pages/faq/routes'; +import { routes as featuresRoutes } from '@ghostfolio/client/pages/features/routes'; +import { routes as marketsRoutes } from '@ghostfolio/client/pages/markets/routes'; +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'; import { SettingsStorageService } from '@ghostfolio/client/services/settings-storage.service'; import { UserService } from '@ghostfolio/client/services/user/user.service'; @@ -13,21 +20,17 @@ import { catchError } from 'rxjs/operators'; @Injectable({ providedIn: 'root' }) export class AuthGuard { private static PUBLIC_PAGE_ROUTES = [ - '/about', - '/about/changelog', - '/about/privacy-policy', + ...aboutRoutes.map((route) => `/${route}`), '/blog', - '/de/blog', '/demo', - '/en/blog', - '/faq', - '/features', - '/markets', + ...faqRoutes.map((route) => `/${route}`), + ...featuresRoutes.map((route) => `/${route}`), + ...marketsRoutes.map((route) => `/${route}`), '/open', '/p', - '/pricing', - '/register', - '/resources' + ...pricingRoutes.map((route) => `/${route}`), + ...registerRoutes.map((route) => `/${route}`), + ...resourcesRoutes.map((route) => `/${route}`) ]; constructor( diff --git a/apps/client/src/app/pages/about/changelog/changelog-page.html b/apps/client/src/app/pages/about/changelog/changelog-page.html index ca7519ba5..0a333f073 100644 --- a/apps/client/src/app/pages/about/changelog/changelog-page.html +++ b/apps/client/src/app/pages/about/changelog/changelog-page.html @@ -1,7 +1,7 @@
-

Changelog

+

Changelog

diff --git a/apps/client/src/app/pages/about/license/license-page.html b/apps/client/src/app/pages/about/license/license-page.html index fe2831da5..ff6315356 100644 --- a/apps/client/src/app/pages/about/license/license-page.html +++ b/apps/client/src/app/pages/about/license/license-page.html @@ -1,7 +1,7 @@
-

License

+

License

diff --git a/apps/client/src/app/pages/about/oss-friends/oss-friends-page.component.ts b/apps/client/src/app/pages/about/oss-friends/oss-friends-page.component.ts index a387976db..f00952c65 100644 --- a/apps/client/src/app/pages/about/oss-friends/oss-friends-page.component.ts +++ b/apps/client/src/app/pages/about/oss-friends/oss-friends-page.component.ts @@ -10,7 +10,7 @@ import { Subject } from 'rxjs'; export class OpenSourceSoftwareFriendsPageComponent implements OnDestroy { public ossFriends = [ { - description: 'Build build custom software on top of your data.', + description: 'Build custom software on top of your data.', name: 'Appsmith', url: 'https://www.appsmith.com' }, diff --git a/apps/client/src/app/pages/about/oss-friends/oss-friends-page.html b/apps/client/src/app/pages/about/oss-friends/oss-friends-page.html index 07f9a8347..77de91ee1 100644 --- a/apps/client/src/app/pages/about/oss-friends/oss-friends-page.html +++ b/apps/client/src/app/pages/about/oss-friends/oss-friends-page.html @@ -1,9 +1,14 @@
-

- Our OSS Friends -

+

+ Our OSS Friends + Discover more Open Source Software projects +

-

About Ghostfolio

+

About Ghostfolio

Ghostfolio is a lightweight wealth management application for diff --git a/apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html b/apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html index 3dff9fd8b..ec67268ee 100644 --- a/apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html +++ b/apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -1,7 +1,7 @@

-

Privacy Policy

+

Privacy Policy

diff --git a/apps/client/src/app/pages/about/routes.ts b/apps/client/src/app/pages/about/routes.ts new file mode 100644 index 000000000..b0e63476d --- /dev/null +++ b/apps/client/src/app/pages/about/routes.ts @@ -0,0 +1,9 @@ +export const routes = [ + 'about', + ///// + 'a-propos', + 'informazioni-su', + 'over', + 'sobre', + 'ueber-uns' +] as const; diff --git a/apps/client/src/app/pages/accounts/accounts-page.html b/apps/client/src/app/pages/accounts/accounts-page.html index 77c487f98..6057802df 100644 --- a/apps/client/src/app/pages/accounts/accounts-page.html +++ b/apps/client/src/app/pages/accounts/accounts-page.html @@ -1,7 +1,7 @@
-

Accounts

+

Accounts

-

Blog

+

Blog

diff --git a/apps/client/src/app/pages/faq/faq-page.html b/apps/client/src/app/pages/faq/faq-page.html index 1b441091c..5af20597f 100644 --- a/apps/client/src/app/pages/faq/faq-page.html +++ b/apps/client/src/app/pages/faq/faq-page.html @@ -1,9 +1,9 @@
-

+

Frequently Asked Questions (FAQ) -

+

Find quick answers to commonly asked questions about Ghostfolio in our Frequently Asked Questions (FAQ) section. Discover what Ghostfolio is, diff --git a/apps/client/src/app/pages/faq/routes.ts b/apps/client/src/app/pages/faq/routes.ts new file mode 100644 index 000000000..b14b3d88b --- /dev/null +++ b/apps/client/src/app/pages/faq/routes.ts @@ -0,0 +1,10 @@ +export const routes = [ + 'faq', + ///// + 'domande-piu-frequenti', + 'foire-aux-questions', + 'haeufig-gestellte-fragen', + 'perguntas-mais-frequentes', + 'preguntas-mas-frecuentes', + 'vaak-gestelde-vragen' +] as const; diff --git a/apps/client/src/app/pages/features/features-page.html b/apps/client/src/app/pages/features/features-page.html index 9f5d2a29d..1dd0ee531 100644 --- a/apps/client/src/app/pages/features/features-page.html +++ b/apps/client/src/app/pages/features/features-page.html @@ -1,13 +1,12 @@

-

Features

-
-

- Check out the numerous features of Ghostfolio to - manage your wealth. -

-
+

+ Features + + Check out the numerous features of Ghostfolio to manage your wealth + +

diff --git a/apps/client/src/app/pages/features/routes.ts b/apps/client/src/app/pages/features/routes.ts new file mode 100644 index 000000000..b2389af0c --- /dev/null +++ b/apps/client/src/app/pages/features/routes.ts @@ -0,0 +1,8 @@ +export const routes = [ + 'features', + ///// + 'fonctionnalites', + 'funcionalidades', + 'funzionalita', + 'kenmerken' +] as const; diff --git a/apps/client/src/app/pages/markets/routes.ts b/apps/client/src/app/pages/markets/routes.ts new file mode 100644 index 000000000..68b7a6e0b --- /dev/null +++ b/apps/client/src/app/pages/markets/routes.ts @@ -0,0 +1,9 @@ +export const routes = [ + 'markets', + ///// + 'maerkte', + 'marches', + 'markten', + 'mercados', + 'mercati' +] as const; diff --git a/apps/client/src/app/pages/open/open-page.html b/apps/client/src/app/pages/open/open-page.html index 04a046181..a28e32ce4 100644 --- a/apps/client/src/app/pages/open/open-page.html +++ b/apps/client/src/app/pages/open/open-page.html @@ -1,8 +1,8 @@
-

Open Startup

-
+

Open Startup

+

At Ghostfolio, transparency is at the core of our values. We publish the source code as diff --git a/apps/client/src/app/pages/portfolio/activities/activities-page.html b/apps/client/src/app/pages/portfolio/activities/activities-page.html index dddc41b0b..a5c9201a0 100644 --- a/apps/client/src/app/pages/portfolio/activities/activities-page.html +++ b/apps/client/src/app/pages/portfolio/activities/activities-page.html @@ -1,7 +1,7 @@

-

Activities

+

Activities

-

Allocations

+

Allocations

-

Analysis

+

Analysis

-

FIRE

+

FIRE

Calculator
-

X-ray

+

X-ray

Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. diff --git a/apps/client/src/app/pages/portfolio/holdings/holdings-page.html b/apps/client/src/app/pages/portfolio/holdings/holdings-page.html index 77696fcbd..98b5dad87 100644 --- a/apps/client/src/app/pages/portfolio/holdings/holdings-page.html +++ b/apps/client/src/app/pages/portfolio/holdings/holdings-page.html @@ -1,7 +1,7 @@

-

Holdings

+

Holdings

-

Pricing Plans

+

Pricing Plans

Our official Ghostfolio Premium cloud offering is the easiest way to diff --git a/apps/client/src/app/pages/pricing/routes.ts b/apps/client/src/app/pages/pricing/routes.ts new file mode 100644 index 000000000..0d1bbd4f1 --- /dev/null +++ b/apps/client/src/app/pages/pricing/routes.ts @@ -0,0 +1,10 @@ +export const routes = [ + 'pricing', + ///// + 'precios', + 'precos', + 'preise', + 'prezzi', + 'prijzen', + 'prix' +] as const; diff --git a/apps/client/src/app/pages/public/public-page.html b/apps/client/src/app/pages/public/public-page.html index 5b687aa9e..7d8eacf9f 100644 --- a/apps/client/src/app/pages/public/public-page.html +++ b/apps/client/src/app/pages/public/public-page.html @@ -1,10 +1,10 @@

-

+

Hello, {{ portfolioPublicDetails?.alias ?? 'someone' }} has shared a Portfolio with you! -

+

diff --git a/apps/client/src/app/pages/register/routes.ts b/apps/client/src/app/pages/register/routes.ts new file mode 100644 index 000000000..e885d1038 --- /dev/null +++ b/apps/client/src/app/pages/register/routes.ts @@ -0,0 +1,10 @@ +export const routes = [ + 'register', + ///// + 'enregistrement', + 'iscrizione', + 'registo', + 'registratie', + 'registrierung', + 'registro' +] as const; 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 736018a91..2c0a2b825 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 @@ -1,9 +1,9 @@
-

+

Discover Open Source Alternatives for Personal Finance Tools -

+

This overview page features a curated collection of personal finance diff --git a/apps/client/src/app/pages/resources/resources-page.html b/apps/client/src/app/pages/resources/resources-page.html index 9f35c6114..3e0e5959a 100644 --- a/apps/client/src/app/pages/resources/resources-page.html +++ b/apps/client/src/app/pages/resources/resources-page.html @@ -1,7 +1,7 @@

-

Resources

+

Resources

Guides

diff --git a/apps/client/src/app/pages/resources/routes.ts b/apps/client/src/app/pages/resources/routes.ts new file mode 100644 index 000000000..acdf9cdfc --- /dev/null +++ b/apps/client/src/app/pages/resources/routes.ts @@ -0,0 +1,9 @@ +export const routes = [ + 'resources', + ///// + 'bronnen', + 'recursos', + 'ressourcen', + 'ressources', + 'risorse' +] as const; diff --git a/apps/client/src/app/pages/user-account/user-account-page.html b/apps/client/src/app/pages/user-account/user-account-page.html index aeba71320..ab3b03d0f 100644 --- a/apps/client/src/app/pages/user-account/user-account-page.html +++ b/apps/client/src/app/pages/user-account/user-account-page.html @@ -1,7 +1,7 @@
-

Account

+

Account

@@ -287,7 +287,7 @@
-

Granted Access

+

Granted Access

apps/client/src/app/pages/features/features-page.html - 4 + 5 @@ -974,7 +974,7 @@ Registrieren apps/client/src/app/pages/features/features-page.html - 299 + 298 apps/client/src/app/pages/public/public-page.html @@ -1206,7 +1206,7 @@ apps/client/src/app/pages/features/features-page.html - 90 + 89 @@ -1246,7 +1246,7 @@ apps/client/src/app/pages/features/features-page.html - 64 + 63 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1698,7 +1698,7 @@ Zen Modus apps/client/src/app/pages/features/features-page.html - 193 + 192 apps/client/src/app/pages/user-account/user-account-page.html @@ -3182,7 +3182,7 @@ apps/client/src/app/pages/features/features-page.html - 260 + 259 apps/client/src/app/pages/user-account/user-account-page.html @@ -3690,7 +3690,7 @@ apps/client/src/app/pages/features/features-page.html - 162 + 161 apps/client/src/app/pages/pricing/pricing-page.html @@ -4150,7 +4150,7 @@ apps/client/src/app/pages/features/features-page.html - 103 + 102 @@ -4182,7 +4182,7 @@ Aktien apps/client/src/app/pages/features/features-page.html - 16 + 15 @@ -4190,7 +4190,7 @@ ETFs apps/client/src/app/pages/features/features-page.html - 26 + 25 @@ -4198,7 +4198,7 @@ Anleihen apps/client/src/app/pages/features/features-page.html - 39 + 38 @@ -4206,7 +4206,7 @@ Kryptowährungen apps/client/src/app/pages/features/features-page.html - 52 + 51 @@ -4214,7 +4214,7 @@ Wertsachen apps/client/src/app/pages/features/features-page.html - 77 + 76 @@ -4222,7 +4222,7 @@ Import und Export apps/client/src/app/pages/features/features-page.html - 116,118 + 115,117 @@ -4230,7 +4230,7 @@ Unterstützung mehrerer Konten apps/client/src/app/pages/features/features-page.html - 128 + 127 @@ -4238,7 +4238,7 @@ Portfolio Berechnungen apps/client/src/app/pages/features/features-page.html - 142 + 141 @@ -4246,7 +4246,7 @@ Dark Mode apps/client/src/app/pages/features/features-page.html - 180 + 179 @@ -4254,7 +4254,7 @@ Marktstimmung apps/client/src/app/pages/features/features-page.html - 210 + 209 @@ -4262,7 +4262,7 @@ Statische Analyse apps/client/src/app/pages/features/features-page.html - 228 + 227 @@ -4270,7 +4270,7 @@ Mehrsprachigkeit apps/client/src/app/pages/features/features-page.html - 246 + 245 @@ -4278,7 +4278,7 @@ Open Source Software apps/client/src/app/pages/features/features-page.html - 279 + 278 @@ -7270,7 +7270,7 @@ Unsere apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 5 + 6 @@ -7278,7 +7278,31 @@ Besuche apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 26 + 31 + + + + Discover more Open Source Software projects + Entdecke weitere Open Source Software Projekte + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Häufig gestellte Fragen (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4,6 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Entdecke die zahlreichen Funktionen von Ghostfolio zur Vermögensverwaltung + + apps/client/src/app/pages/features/features-page.html + 6,8 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 91bc6c798..1ff5f6449 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -947,7 +947,7 @@ apps/client/src/app/pages/features/features-page.html - 4 + 5 @@ -975,7 +975,7 @@ Empezar apps/client/src/app/pages/features/features-page.html - 299 + 298 apps/client/src/app/pages/public/public-page.html @@ -1207,7 +1207,7 @@ apps/client/src/app/pages/features/features-page.html - 90 + 89 @@ -1247,7 +1247,7 @@ apps/client/src/app/pages/features/features-page.html - 64 + 63 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1699,7 +1699,7 @@ Modo Zen apps/client/src/app/pages/features/features-page.html - 193 + 192 apps/client/src/app/pages/user-account/user-account-page.html @@ -3183,7 +3183,7 @@ apps/client/src/app/pages/features/features-page.html - 260 + 259 apps/client/src/app/pages/user-account/user-account-page.html @@ -3691,7 +3691,7 @@ apps/client/src/app/pages/features/features-page.html - 162 + 161 apps/client/src/app/pages/pricing/pricing-page.html @@ -4151,7 +4151,7 @@ apps/client/src/app/pages/features/features-page.html - 103 + 102 @@ -4183,7 +4183,7 @@ Stocks apps/client/src/app/pages/features/features-page.html - 16 + 15 @@ -4191,7 +4191,7 @@ ETFs apps/client/src/app/pages/features/features-page.html - 26 + 25 @@ -4199,7 +4199,7 @@ Bonds apps/client/src/app/pages/features/features-page.html - 39 + 38 @@ -4207,7 +4207,7 @@ Cryptocurrencies apps/client/src/app/pages/features/features-page.html - 52 + 51 @@ -4215,7 +4215,7 @@ Wealth Items apps/client/src/app/pages/features/features-page.html - 77 + 76 @@ -4223,7 +4223,7 @@ Import and Export apps/client/src/app/pages/features/features-page.html - 116,118 + 115,117 @@ -4231,7 +4231,7 @@ Multi-Accounts apps/client/src/app/pages/features/features-page.html - 128 + 127 @@ -4239,7 +4239,7 @@ Portfolio Calculations apps/client/src/app/pages/features/features-page.html - 142 + 141 @@ -4247,7 +4247,7 @@ Dark Mode apps/client/src/app/pages/features/features-page.html - 180 + 179 @@ -4255,7 +4255,7 @@ Market Mood apps/client/src/app/pages/features/features-page.html - 210 + 209 @@ -4263,7 +4263,7 @@ Static Analysis apps/client/src/app/pages/features/features-page.html - 228 + 227 @@ -4271,7 +4271,7 @@ Multi-Language apps/client/src/app/pages/features/features-page.html - 246 + 245 @@ -4279,7 +4279,7 @@ Open Source Software apps/client/src/app/pages/features/features-page.html - 279 + 278 @@ -7271,7 +7271,7 @@ Our apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 5 + 6 @@ -7279,7 +7279,31 @@ Visit apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 26 + 31 + + + + Discover more Open Source Software projects + Discover more Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4,6 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6,8 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index dd4adca09..37c33df32 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -1238,7 +1238,7 @@ apps/client/src/app/pages/features/features-page.html - 4 + 5 @@ -1550,7 +1550,7 @@ apps/client/src/app/pages/features/features-page.html - 90 + 89 @@ -1598,7 +1598,7 @@ apps/client/src/app/pages/features/features-page.html - 64 + 63 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1986,7 +1986,7 @@ apps/client/src/app/pages/features/features-page.html - 260 + 259 apps/client/src/app/pages/user-account/user-account-page.html @@ -2062,7 +2062,7 @@ Mode Zen apps/client/src/app/pages/features/features-page.html - 193 + 192 apps/client/src/app/pages/user-account/user-account-page.html @@ -2846,7 +2846,7 @@ Démarrer apps/client/src/app/pages/features/features-page.html - 299 + 298 apps/client/src/app/pages/public/public-page.html @@ -3690,7 +3690,7 @@ apps/client/src/app/pages/features/features-page.html - 162 + 161 apps/client/src/app/pages/pricing/pricing-page.html @@ -4150,7 +4150,7 @@ apps/client/src/app/pages/features/features-page.html - 103 + 102 @@ -4182,7 +4182,7 @@ Actions apps/client/src/app/pages/features/features-page.html - 16 + 15 @@ -4190,7 +4190,7 @@ ETFs apps/client/src/app/pages/features/features-page.html - 26 + 25 @@ -4198,7 +4198,7 @@ Obligations apps/client/src/app/pages/features/features-page.html - 39 + 38 @@ -4206,7 +4206,7 @@ Cryptomonnaies apps/client/src/app/pages/features/features-page.html - 52 + 51 @@ -4214,7 +4214,7 @@ Wealth Items apps/client/src/app/pages/features/features-page.html - 77 + 76 @@ -4222,7 +4222,7 @@ Importer et Exporter apps/client/src/app/pages/features/features-page.html - 116,118 + 115,117 @@ -4230,7 +4230,7 @@ Multi-Comptes apps/client/src/app/pages/features/features-page.html - 128 + 127 @@ -4238,7 +4238,7 @@ Portfolio Calculations apps/client/src/app/pages/features/features-page.html - 142 + 141 @@ -4246,7 +4246,7 @@ Mode Sombre apps/client/src/app/pages/features/features-page.html - 180 + 179 @@ -4254,7 +4254,7 @@ Sentiment du Marché apps/client/src/app/pages/features/features-page.html - 210 + 209 @@ -4262,7 +4262,7 @@ Analyse statique apps/client/src/app/pages/features/features-page.html - 228 + 227 @@ -4270,7 +4270,7 @@ Multi-Langue apps/client/src/app/pages/features/features-page.html - 246 + 245 @@ -4278,7 +4278,7 @@ Logiciel Open Source apps/client/src/app/pages/features/features-page.html - 279 + 278 @@ -7270,7 +7270,7 @@ Our apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 5 + 6 @@ -7278,7 +7278,31 @@ Visit apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 26 + 31 + + + + Discover more Open Source Software projects + Discover more Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4,6 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6,8 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 6d97cf344..9323a1894 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -947,7 +947,7 @@ apps/client/src/app/pages/features/features-page.html - 4 + 5 @@ -975,7 +975,7 @@ Iniziare apps/client/src/app/pages/features/features-page.html - 299 + 298 apps/client/src/app/pages/public/public-page.html @@ -1207,7 +1207,7 @@ apps/client/src/app/pages/features/features-page.html - 90 + 89 @@ -1247,7 +1247,7 @@ apps/client/src/app/pages/features/features-page.html - 64 + 63 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1699,7 +1699,7 @@ Modalità Zen apps/client/src/app/pages/features/features-page.html - 193 + 192 apps/client/src/app/pages/user-account/user-account-page.html @@ -3183,7 +3183,7 @@ apps/client/src/app/pages/features/features-page.html - 260 + 259 apps/client/src/app/pages/user-account/user-account-page.html @@ -3691,7 +3691,7 @@ apps/client/src/app/pages/features/features-page.html - 162 + 161 apps/client/src/app/pages/pricing/pricing-page.html @@ -4151,7 +4151,7 @@ apps/client/src/app/pages/features/features-page.html - 103 + 102 @@ -4183,7 +4183,7 @@ Stocks apps/client/src/app/pages/features/features-page.html - 16 + 15 @@ -4191,7 +4191,7 @@ ETFs apps/client/src/app/pages/features/features-page.html - 26 + 25 @@ -4199,7 +4199,7 @@ Bonds apps/client/src/app/pages/features/features-page.html - 39 + 38 @@ -4207,7 +4207,7 @@ Cryptocurrencies apps/client/src/app/pages/features/features-page.html - 52 + 51 @@ -4215,7 +4215,7 @@ Wealth Items apps/client/src/app/pages/features/features-page.html - 77 + 76 @@ -4223,7 +4223,7 @@ Import and Export apps/client/src/app/pages/features/features-page.html - 116,118 + 115,117 @@ -4231,7 +4231,7 @@ Multi-Accounts apps/client/src/app/pages/features/features-page.html - 128 + 127 @@ -4239,7 +4239,7 @@ Portfolio Calculations apps/client/src/app/pages/features/features-page.html - 142 + 141 @@ -4247,7 +4247,7 @@ Dark Mode apps/client/src/app/pages/features/features-page.html - 180 + 179 @@ -4255,7 +4255,7 @@ Market Mood apps/client/src/app/pages/features/features-page.html - 210 + 209 @@ -4263,7 +4263,7 @@ Static Analysis apps/client/src/app/pages/features/features-page.html - 228 + 227 @@ -4271,7 +4271,7 @@ Multi-Language apps/client/src/app/pages/features/features-page.html - 246 + 245 @@ -4279,7 +4279,7 @@ Open Source Software apps/client/src/app/pages/features/features-page.html - 279 + 278 @@ -7271,7 +7271,7 @@ Our apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 5 + 6 @@ -7279,7 +7279,31 @@ Visit apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 26 + 31 + + + + Discover more Open Source Software projects + Discover more Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4,6 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6,8 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index a16d4f77f..83f9752f4 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -946,7 +946,7 @@ apps/client/src/app/pages/features/features-page.html - 4 + 5 @@ -974,7 +974,7 @@ Aan de slag apps/client/src/app/pages/features/features-page.html - 299 + 298 apps/client/src/app/pages/public/public-page.html @@ -1206,7 +1206,7 @@ apps/client/src/app/pages/features/features-page.html - 90 + 89 @@ -1246,7 +1246,7 @@ apps/client/src/app/pages/features/features-page.html - 64 + 63 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1698,7 +1698,7 @@ Zen-modus apps/client/src/app/pages/features/features-page.html - 193 + 192 apps/client/src/app/pages/user-account/user-account-page.html @@ -3182,7 +3182,7 @@ apps/client/src/app/pages/features/features-page.html - 260 + 259 apps/client/src/app/pages/user-account/user-account-page.html @@ -3690,7 +3690,7 @@ apps/client/src/app/pages/features/features-page.html - 162 + 161 apps/client/src/app/pages/pricing/pricing-page.html @@ -4150,7 +4150,7 @@ apps/client/src/app/pages/features/features-page.html - 103 + 102 @@ -4182,7 +4182,7 @@ Stocks apps/client/src/app/pages/features/features-page.html - 16 + 15 @@ -4190,7 +4190,7 @@ ETFs apps/client/src/app/pages/features/features-page.html - 26 + 25 @@ -4198,7 +4198,7 @@ Bonds apps/client/src/app/pages/features/features-page.html - 39 + 38 @@ -4206,7 +4206,7 @@ Cryptocurrencies apps/client/src/app/pages/features/features-page.html - 52 + 51 @@ -4214,7 +4214,7 @@ Wealth Items apps/client/src/app/pages/features/features-page.html - 77 + 76 @@ -4222,7 +4222,7 @@ Import and Export apps/client/src/app/pages/features/features-page.html - 116,118 + 115,117 @@ -4230,7 +4230,7 @@ Multi-Accounts apps/client/src/app/pages/features/features-page.html - 128 + 127 @@ -4238,7 +4238,7 @@ Portfolio Calculations apps/client/src/app/pages/features/features-page.html - 142 + 141 @@ -4246,7 +4246,7 @@ Dark Mode apps/client/src/app/pages/features/features-page.html - 180 + 179 @@ -4254,7 +4254,7 @@ Market Mood apps/client/src/app/pages/features/features-page.html - 210 + 209 @@ -4262,7 +4262,7 @@ Static Analysis apps/client/src/app/pages/features/features-page.html - 228 + 227 @@ -4270,7 +4270,7 @@ Multi-Language apps/client/src/app/pages/features/features-page.html - 246 + 245 @@ -4278,7 +4278,7 @@ Open Source Software apps/client/src/app/pages/features/features-page.html - 279 + 278 @@ -7270,7 +7270,7 @@ Our apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 5 + 6 @@ -7278,7 +7278,31 @@ Visit apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 26 + 31 + + + + Discover more Open Source Software projects + Discover more Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4,6 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6,8 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 9f1e3b9a5..79070e6fd 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -1118,7 +1118,7 @@ apps/client/src/app/pages/features/features-page.html - 4 + 5 @@ -1446,7 +1446,7 @@ apps/client/src/app/pages/features/features-page.html - 90 + 89 @@ -1494,7 +1494,7 @@ apps/client/src/app/pages/features/features-page.html - 64 + 63 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1994,7 +1994,7 @@ Modo Zen apps/client/src/app/pages/features/features-page.html - 193 + 192 apps/client/src/app/pages/user-account/user-account-page.html @@ -2754,7 +2754,7 @@ Começar apps/client/src/app/pages/features/features-page.html - 299 + 298 apps/client/src/app/pages/public/public-page.html @@ -3238,7 +3238,7 @@ apps/client/src/app/pages/features/features-page.html - 260 + 259 apps/client/src/app/pages/user-account/user-account-page.html @@ -3690,7 +3690,7 @@ apps/client/src/app/pages/features/features-page.html - 162 + 161 apps/client/src/app/pages/pricing/pricing-page.html @@ -4150,7 +4150,7 @@ apps/client/src/app/pages/features/features-page.html - 103 + 102 @@ -4182,7 +4182,7 @@ Stocks apps/client/src/app/pages/features/features-page.html - 16 + 15 @@ -4190,7 +4190,7 @@ ETFs apps/client/src/app/pages/features/features-page.html - 26 + 25 @@ -4198,7 +4198,7 @@ Bonds apps/client/src/app/pages/features/features-page.html - 39 + 38 @@ -4206,7 +4206,7 @@ Cryptocurrencies apps/client/src/app/pages/features/features-page.html - 52 + 51 @@ -4214,7 +4214,7 @@ Wealth Items apps/client/src/app/pages/features/features-page.html - 77 + 76 @@ -4222,7 +4222,7 @@ Import and Export apps/client/src/app/pages/features/features-page.html - 116,118 + 115,117 @@ -4230,7 +4230,7 @@ Multi-Accounts apps/client/src/app/pages/features/features-page.html - 128 + 127 @@ -4238,7 +4238,7 @@ Portfolio Calculations apps/client/src/app/pages/features/features-page.html - 142 + 141 @@ -4246,7 +4246,7 @@ Dark Mode apps/client/src/app/pages/features/features-page.html - 180 + 179 @@ -4254,7 +4254,7 @@ Market Mood apps/client/src/app/pages/features/features-page.html - 210 + 209 @@ -4262,7 +4262,7 @@ Static Analysis apps/client/src/app/pages/features/features-page.html - 228 + 227 @@ -4270,7 +4270,7 @@ Multi-Language apps/client/src/app/pages/features/features-page.html - 246 + 245 @@ -4278,7 +4278,7 @@ Open Source Software apps/client/src/app/pages/features/features-page.html - 279 + 278 @@ -7270,7 +7270,7 @@ Our apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 5 + 6 @@ -7278,7 +7278,31 @@ Visit apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 26 + 31 + + + + Discover more Open Source Software projects + Discover more Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4,6 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6,8 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 2c44497f9..fe645d3d9 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -877,7 +877,7 @@ apps/client/src/app/pages/features/features-page.html - 4 + 5 @@ -903,7 +903,7 @@ Get Started apps/client/src/app/pages/features/features-page.html - 299 + 298 apps/client/src/app/pages/public/public-page.html @@ -1111,7 +1111,7 @@ apps/client/src/app/pages/features/features-page.html - 90 + 89 @@ -1147,7 +1147,7 @@ apps/client/src/app/pages/features/features-page.html - 64 + 63 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1560,7 +1560,7 @@ Zen Mode apps/client/src/app/pages/features/features-page.html - 193 + 192 apps/client/src/app/pages/user-account/user-account-page.html @@ -2889,7 +2889,7 @@ apps/client/src/app/pages/features/features-page.html - 260 + 259 apps/client/src/app/pages/user-account/user-account-page.html @@ -3348,7 +3348,7 @@ apps/client/src/app/pages/features/features-page.html - 162 + 161 apps/client/src/app/pages/pricing/pricing-page.html @@ -3752,7 +3752,7 @@ Bonds apps/client/src/app/pages/features/features-page.html - 39 + 38 @@ -3763,28 +3763,28 @@ apps/client/src/app/pages/features/features-page.html - 103 + 102 Static Analysis apps/client/src/app/pages/features/features-page.html - 228 + 227 Multi-Accounts apps/client/src/app/pages/features/features-page.html - 128 + 127 ETFs apps/client/src/app/pages/features/features-page.html - 26 + 25 @@ -3813,56 +3813,56 @@ Cryptocurrencies apps/client/src/app/pages/features/features-page.html - 52 + 51 Stocks apps/client/src/app/pages/features/features-page.html - 16 + 15 Wealth Items apps/client/src/app/pages/features/features-page.html - 77 + 76 Open Source Software apps/client/src/app/pages/features/features-page.html - 279 + 278 Import and Export apps/client/src/app/pages/features/features-page.html - 116,118 + 115,117 Dark Mode apps/client/src/app/pages/features/features-page.html - 180 + 179 Market Mood apps/client/src/app/pages/features/features-page.html - 210 + 209 Multi-Language apps/client/src/app/pages/features/features-page.html - 246 + 245 @@ -3876,7 +3876,7 @@ Portfolio Calculations apps/client/src/app/pages/features/features-page.html - 142 + 141 @@ -6807,14 +6807,35 @@ Visit apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 26 + 31 Our apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 5 + 6 + + + + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4,6 + + + + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6,8 + + + + Discover more Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 diff --git a/package.json b/package.json index c2f2de928..179b7a1e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "1.301.0", + "version": "1.301.1", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio",