From 18f94a1ba15f37151d8de340e66dcc944e7b5bcd Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 16 Jun 2025 08:02:11 +0200 Subject: [PATCH 01/56] Feature/refactor various routes (part 2) (#4949) * Refactor various routes --- apps/client/src/app/app-routing.module.ts | 2 +- apps/client/src/app/app.component.ts | 8 ++------ .../components/access-table/access-table.component.ts | 4 ++-- apps/client/src/app/core/auth.guard.ts | 8 ++------ .../src/app/pages/home/home-page-routing.module.ts | 9 +++------ apps/client/src/app/pages/home/home-page.component.ts | 6 +++--- libs/common/src/lib/routes/routes.ts | 11 +++++++++-- 7 files changed, 22 insertions(+), 26 deletions(-) diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index 63eef7250..a7e587ea8 100644 --- a/apps/client/src/app/app-routing.module.ts +++ b/apps/client/src/app/app-routing.module.ts @@ -119,7 +119,7 @@ const routes: Routes = [ ) }, { - path: ghostfolioRoutes.public, + path: publicRoutes.public.path, loadChildren: () => import('./pages/public/public-page.module').then( (m) => m.PublicPageModule diff --git a/apps/client/src/app/app.component.ts b/apps/client/src/app/app.component.ts index 72e8b84d8..fb39028fc 100644 --- a/apps/client/src/app/app.component.ts +++ b/apps/client/src/app/app.component.ts @@ -3,11 +3,7 @@ import { HoldingDetailDialogParams } from '@ghostfolio/client/components/holding import { getCssVariable } from '@ghostfolio/common/helper'; import { InfoItem, User } from '@ghostfolio/common/interfaces'; import { hasPermission, permissions } from '@ghostfolio/common/permissions'; -import { - internalRoutes, - publicRoutes, - routes -} from '@ghostfolio/common/routes/routes'; +import { internalRoutes, publicRoutes } from '@ghostfolio/common/routes/routes'; import { ColorScheme } from '@ghostfolio/common/types'; import { DOCUMENT } from '@angular/common'; @@ -213,7 +209,7 @@ export class AppComponent implements OnDestroy, OnInit { this.currentRoute === publicRoutes.features.path || this.currentRoute === publicRoutes.markets.path || this.currentRoute === publicRoutes.openStartup.path || - this.currentRoute === routes.public || + this.currentRoute === publicRoutes.public.path || this.currentRoute === publicRoutes.pricing.path || this.currentRoute === publicRoutes.register.path || this.currentRoute === publicRoutes.start.path) && diff --git a/apps/client/src/app/components/access-table/access-table.component.ts b/apps/client/src/app/components/access-table/access-table.component.ts index 50d823def..641156f5b 100644 --- a/apps/client/src/app/components/access-table/access-table.component.ts +++ b/apps/client/src/app/components/access-table/access-table.component.ts @@ -1,7 +1,7 @@ import { ConfirmationDialogType } from '@ghostfolio/client/core/notification/confirmation-dialog/confirmation-dialog.type'; import { NotificationService } from '@ghostfolio/client/core/notification/notification.service'; import { Access, User } from '@ghostfolio/common/interfaces'; -import { routes } from '@ghostfolio/common/routes/routes'; +import { publicRoutes } from '@ghostfolio/common/routes/routes'; import { Clipboard } from '@angular/cdk/clipboard'; import { @@ -55,7 +55,7 @@ export class AccessTableComponent implements OnChanges { public getPublicUrl(aId: string): string { const languageCode = this.user.settings.language; - return `${this.baseUrl}/${languageCode}/${routes.public}/${aId}`; + return `${this.baseUrl}/${languageCode}/${publicRoutes.public.path}/${aId}`; } public onCopyUrlToClipboard(aId: string): void { diff --git a/apps/client/src/app/core/auth.guard.ts b/apps/client/src/app/core/auth.guard.ts index ef6a8f4a7..69280af6a 100644 --- a/apps/client/src/app/core/auth.guard.ts +++ b/apps/client/src/app/core/auth.guard.ts @@ -1,11 +1,7 @@ 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'; -import { - internalRoutes, - publicRoutes, - routes -} from '@ghostfolio/common/routes/routes'; +import { internalRoutes, publicRoutes } from '@ghostfolio/common/routes/routes'; import { Injectable } from '@angular/core'; import { @@ -27,7 +23,7 @@ export class AuthGuard { `/${publicRoutes.markets.path}`, `/${publicRoutes.openStartup.path}`, `/${publicRoutes.pricing.path}`, - `/${routes.public}`, + `/${publicRoutes.public.path}`, `/${publicRoutes.register.path}`, `/${publicRoutes.resources.path}` ]; diff --git a/apps/client/src/app/pages/home/home-page-routing.module.ts b/apps/client/src/app/pages/home/home-page-routing.module.ts index 68432c17d..6fa7f1c27 100644 --- a/apps/client/src/app/pages/home/home-page-routing.module.ts +++ b/apps/client/src/app/pages/home/home-page-routing.module.ts @@ -4,10 +4,7 @@ import { HomeOverviewComponent } from '@ghostfolio/client/components/home-overvi import { HomeSummaryComponent } from '@ghostfolio/client/components/home-summary/home-summary.component'; import { HomeWatchlistComponent } from '@ghostfolio/client/components/home-watchlist/home-watchlist.component'; import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; -import { - routes as ghostfolioRoutes, - internalRoutes -} from '@ghostfolio/common/routes/routes'; +import { internalRoutes } from '@ghostfolio/common/routes/routes'; import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; @@ -33,9 +30,9 @@ const routes: Routes = [ title: internalRoutes.home.subRoutes.summary.title }, { - path: ghostfolioRoutes.market, + path: internalRoutes.home.subRoutes.markets.path, component: HomeMarketComponent, - title: $localize`Markets` + title: internalRoutes.home.subRoutes.markets.title }, { path: internalRoutes.home.subRoutes.watchlist.path, diff --git a/apps/client/src/app/pages/home/home-page.component.ts b/apps/client/src/app/pages/home/home-page.component.ts index 68d93520a..ad9a65a4c 100644 --- a/apps/client/src/app/pages/home/home-page.component.ts +++ b/apps/client/src/app/pages/home/home-page.component.ts @@ -1,7 +1,7 @@ import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service'; import { UserService } from '@ghostfolio/client/services/user/user.service'; import { TabConfiguration, User } from '@ghostfolio/common/interfaces'; -import { internalRoutes, routes } from '@ghostfolio/common/routes/routes'; +import { internalRoutes } from '@ghostfolio/common/routes/routes'; import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core'; import { DeviceDetectorService } from 'ngx-device-detector'; @@ -56,8 +56,8 @@ export class HomePageComponent implements OnDestroy, OnInit { }, { iconName: 'newspaper-outline', - label: $localize`Markets`, - routerLink: ['/' + internalRoutes.home.path, routes.market] + label: internalRoutes.home.subRoutes.markets.title, + routerLink: internalRoutes.home.subRoutes.markets.routerLink } ]; diff --git a/libs/common/src/lib/routes/routes.ts b/libs/common/src/lib/routes/routes.ts index 6f6017623..adf2b5704 100644 --- a/libs/common/src/lib/routes/routes.ts +++ b/libs/common/src/lib/routes/routes.ts @@ -5,9 +5,7 @@ import { IRoute } from './interfaces/interfaces'; export const routes = { api: 'api', i18n: 'i18n', - market: 'market', personalFinanceTools: 'personal-finance-tools', - public: 'p', // Publicly accessible pages openSourceAlternativeTo: $localize`:kebab-case:open-source-alternative-to` @@ -79,6 +77,11 @@ export const internalRoutes: Record = { routerLink: ['/home', 'holdings'], title: $localize`Holdings` }, + markets: { + path: 'markets', + routerLink: ['/home', 'markets'], + title: $localize`Markets` + }, summary: { path: 'summary', routerLink: ['/home', 'summary'], @@ -240,6 +243,10 @@ export const publicRoutes = { routerLink: ['/' + $localize`:kebab-case:pricing`], title: $localize`Pricing` }, + public: { + path: 'p', + routerLink: ['/p'] + }, register: { path: $localize`:kebab-case:register`, routerLink: ['/' + $localize`:kebab-case:register`], From 5fde161eed670408f9a76769f8947d815e761764 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 16 Jun 2025 08:03:38 +0200 Subject: [PATCH 02/56] Feature/clean up space in AI service (#4942) * Clean up space --- apps/api/src/app/endpoints/ai/ai.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/app/endpoints/ai/ai.service.ts b/apps/api/src/app/endpoints/ai/ai.service.ts index 8807e67bf..df6b7749a 100644 --- a/apps/api/src/app/endpoints/ai/ai.service.ts +++ b/apps/api/src/app/endpoints/ai/ai.service.ts @@ -30,7 +30,7 @@ export class AiService { }); const holdingsTable = [ - '| Name | Symbol | Currency | Asset Class | Asset Sub Class | Allocation in Percentage |', + '| Name | Symbol | Currency | Asset Class | Asset Sub Class | Allocation in Percentage |', '| --- | --- | --- | --- | --- | --- |', ...Object.values(holdings) .sort((a, b) => { From 32919f96a91991bd5c7f956f38cf4f542840ee03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 08:07:41 +0200 Subject: [PATCH 03/56] Feature/update locales (#4947) Co-authored-by: github-actions[bot] --- apps/client/src/locales/messages.ca.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.de.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.es.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.fr.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.it.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.nl.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.pl.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.pt.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.tr.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.uk.xlf | 264 +++++++++++------------- apps/client/src/locales/messages.xlf | 263 +++++++++++------------ apps/client/src/locales/messages.zh.xlf | 264 +++++++++++------------- 12 files changed, 1463 insertions(+), 1704 deletions(-) diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 80579001e..81d20e741 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -6,7 +6,7 @@ Característiques libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -14,20 +14,24 @@ Internacionalització apps/client/src/app/app-routing.module.ts - 92 + 93 Sign in Iniciar sessió - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + You are using the Live Demo. @@ -371,31 +375,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -404,11 +408,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -417,11 +421,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -430,19 +434,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -451,11 +455,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -464,19 +468,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -485,11 +489,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -498,11 +502,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -511,23 +515,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -1323,7 +1327,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -2023,7 +2027,7 @@ Portfolio apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -2031,7 +2035,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -2039,7 +2043,7 @@ Punt de Referència apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -3279,7 +3283,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3291,7 +3295,7 @@ Aquesta acció no està permesa. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -3299,7 +3303,7 @@ Vaja! Alguna cosa va fallar. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3315,7 +3319,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3327,7 +3331,7 @@ Ups! Sembla que esteu fent massa sol·licituds. Si us plau, aneu una mica més lent. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -3339,7 +3343,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -3347,7 +3351,7 @@ Registre de canvis libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -3355,7 +3359,7 @@ llicència libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -3363,7 +3367,7 @@ Política de privadesa libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -3395,7 +3399,7 @@ Comptes libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -3458,64 +3462,44 @@ Admin Control Control d’administració - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 Job Queue Cua de treball - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 Market Data Dades de mercat - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Settings Configuració - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 Users Usuaris - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -3531,11 +3515,11 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 @@ -3543,7 +3527,7 @@ Bloc libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -3571,7 +3555,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -3591,7 +3575,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -3603,7 +3587,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -3612,11 +3596,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -3764,11 +3748,11 @@ Explotacions libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -3776,31 +3760,27 @@ Resum libs/common/src/lib/routes/routes.ts - 50 + 88 Markets Mercats - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -4248,7 +4228,7 @@ Activitats libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -4324,7 +4304,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -4424,7 +4404,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -4488,7 +4468,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -4676,7 +4656,7 @@ Anàlisi libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -4892,7 +4872,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -5116,7 +5096,7 @@ Registration libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -5157,7 +5137,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5469,7 +5449,7 @@ Resources libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -5492,24 +5472,16 @@ Membership Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5713,7 +5685,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5729,7 +5701,7 @@ Date Range libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5737,7 +5709,7 @@ Reset Filters libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -5745,7 +5717,7 @@ Apply Filters libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6957,7 +6929,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6969,7 +6941,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6978,11 +6950,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6991,11 +6963,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7115,7 +7087,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7456,11 +7428,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7468,7 +7440,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7592,7 +7564,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7633,11 +7605,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7728,12 +7700,20 @@ 45 - + Asset Profiles Asset Profiles libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 77ea74198..4534b012b 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -1012,14 +1012,18 @@ Sign in Einloggen - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -1454,7 +1458,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1470,7 +1474,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -1610,7 +1614,7 @@ Datenschutzbestimmungen libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -1674,7 +1678,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -1810,7 +1814,7 @@ Konten libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -1913,8 +1917,8 @@ Admin Control Administration - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 @@ -1922,7 +1926,7 @@ Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -1942,7 +1946,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -1950,7 +1954,7 @@ Features libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -1966,35 +1970,31 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 Markets Märkte - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -2006,7 +2006,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -2090,7 +2090,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -2154,11 +2154,11 @@ Positionen libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -2310,7 +2310,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -2318,7 +2318,7 @@ Aktivitäten libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -2346,7 +2346,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -2354,7 +2354,7 @@ Portfolio apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -2362,7 +2362,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -2394,7 +2394,7 @@ Registrierung libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -2426,7 +2426,7 @@ Ressourcen libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -2582,7 +2582,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2594,7 +2594,7 @@ Ups! Es ist etwas schief gelaufen. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2854,7 +2854,7 @@ Benchmark apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -3305,24 +3305,16 @@ Market Data Marktdaten - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Users Benutzer - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -3330,7 +3322,7 @@ Zusammenfassung libs/common/src/lib/routes/routes.ts - 50 + 88 @@ -3342,7 +3334,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -3981,20 +3973,12 @@ Settings Einstellungen - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 @@ -4162,7 +4146,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -4170,7 +4154,7 @@ Lizenz libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -5135,19 +5119,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -5156,11 +5140,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -5169,31 +5153,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -5202,11 +5186,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -5215,11 +5199,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -5228,19 +5212,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -5249,11 +5233,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -5262,11 +5246,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -5275,23 +5259,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -5364,7 +5348,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5611,24 +5595,16 @@ Membership Mitgliedschaft - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Zugang - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5640,7 +5616,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5856,7 +5832,7 @@ Zeitraum libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5903,12 +5879,8 @@ Job Queue Job Warteschlange - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6056,7 +6028,7 @@ Filter zurücksetzen libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6080,7 +6052,7 @@ Filter anwenden libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6112,7 +6084,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6124,7 +6096,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6133,11 +6105,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6145,7 +6117,7 @@ Ups! Es sieht so aus, als würdest du zu viele Anfragen senden. Bitte geh es ein bisschen langsamer an. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6209,7 +6181,7 @@ Diese Aktion ist nicht zulässig. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6249,7 +6221,7 @@ Internationalisierung apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6981,7 +6953,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6993,7 +6965,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -7002,11 +6974,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -7015,11 +6987,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7139,7 +7111,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7480,11 +7452,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7492,7 +7464,7 @@ Allgemeine Geschäftsbedingungen libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7592,7 +7564,7 @@ Beobachtungsliste libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7633,11 +7605,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7728,12 +7700,20 @@ 45 - + Asset Profiles Anlageprofile libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 40afc1090..45d3465f0 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -997,14 +997,18 @@ Sign in Iniciar sesión - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -1439,7 +1443,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1455,7 +1459,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -1595,7 +1599,7 @@ Política de privacidad libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -1659,7 +1663,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -1795,7 +1799,7 @@ Cuentas libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -1898,8 +1902,8 @@ Admin Control Control de administrador - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 @@ -1907,7 +1911,7 @@ Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -1927,7 +1931,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -1935,7 +1939,7 @@ Funcionalidades libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -1951,35 +1955,31 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 Markets Mercados - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -1991,7 +1991,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -2075,7 +2075,7 @@ Análisis libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -2139,11 +2139,11 @@ Participaciones libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -2295,7 +2295,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -2303,7 +2303,7 @@ Operación libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -2331,7 +2331,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -2339,7 +2339,7 @@ Cartera apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -2347,7 +2347,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -2379,7 +2379,7 @@ Registro libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -2411,7 +2411,7 @@ Recursos libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -2563,7 +2563,7 @@ Vaya! Algo no funcionó bien. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2579,7 +2579,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2831,7 +2831,7 @@ Benchmark apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -3290,24 +3290,16 @@ Market Data Datos del mercado - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Users Usuarios - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -3315,7 +3307,7 @@ Resumen libs/common/src/lib/routes/routes.ts - 50 + 88 @@ -3327,7 +3319,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -3958,20 +3950,12 @@ Settings Configuraciones - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 @@ -4139,7 +4123,7 @@ Registro de cambios libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -4147,7 +4131,7 @@ Licencia libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -5112,19 +5096,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -5133,11 +5117,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -5146,31 +5130,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -5179,11 +5163,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -5192,11 +5176,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -5205,19 +5189,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -5226,11 +5210,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -5239,11 +5223,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -5252,23 +5236,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -5341,7 +5325,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5588,24 +5572,16 @@ Membership Membresía - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Acceso - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5617,7 +5593,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5833,7 +5809,7 @@ Rango de fechas libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5880,12 +5856,8 @@ Job Queue Cola de trabajos - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6033,7 +6005,7 @@ Reiniciar filtros libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6057,7 +6029,7 @@ Aplicar filtros libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6089,7 +6061,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6101,7 +6073,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6110,11 +6082,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6122,7 +6094,7 @@ Oops! It looks like you’re making too many requests. Please slow down a bit. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6186,7 +6158,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6226,7 +6198,7 @@ Internacionalización apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6958,7 +6930,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6970,7 +6942,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6979,11 +6951,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6992,11 +6964,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7116,7 +7088,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7457,11 +7429,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7469,7 +7441,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7593,7 +7565,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7634,11 +7606,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7729,12 +7701,20 @@ 45 - + Asset Profiles Asset Profiles libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index cb82e6b6e..c1679df01 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -670,7 +670,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -1098,7 +1098,7 @@ Portefeuille apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -1106,7 +1106,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -1114,7 +1114,7 @@ Référence apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -1308,14 +1308,18 @@ Sign in Se connecter - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -1754,7 +1758,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1766,7 +1770,7 @@ Oups! Quelque chose s’est mal passé. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1782,7 +1786,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1798,7 +1802,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -1830,7 +1834,7 @@ Politique de Vie Privée libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -1914,7 +1918,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -2150,7 +2154,7 @@ Comptes libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -2189,32 +2193,24 @@ Market Data Données du marché - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Admin Control Contrôle Admin - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 Users Utilisateurs - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -2222,7 +2218,7 @@ Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -2338,7 +2334,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -2346,7 +2342,7 @@ Fonctionnalités libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -2354,11 +2350,11 @@ Positions libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -2366,31 +2362,27 @@ Résumé libs/common/src/lib/routes/routes.ts - 50 + 88 Markets Marchés - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -2398,7 +2390,7 @@ Activités libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -2542,7 +2534,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -2670,7 +2662,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -2802,7 +2794,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -2854,7 +2846,7 @@ Enregistrement libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -2906,7 +2898,7 @@ Ressources libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -2946,11 +2938,11 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 @@ -3326,7 +3318,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -3957,20 +3949,12 @@ Settings Paramètres - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 @@ -4138,7 +4122,7 @@ Historique des modifications libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -4146,7 +4130,7 @@ Licence libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -5111,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -5132,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -5145,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -5178,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -5191,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -5204,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -5225,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -5238,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -5251,23 +5235,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -5340,7 +5324,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5587,24 +5571,16 @@ Membership Statut - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Accès - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5616,7 +5592,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5832,7 +5808,7 @@ Intervalle de Date libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5879,12 +5855,8 @@ Job Queue File d’attente - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6032,7 +6004,7 @@ Réinitialiser les Filtres libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6056,7 +6028,7 @@ Appliquer les Filtres libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6088,7 +6060,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6100,7 +6072,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6109,11 +6081,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6121,7 +6093,7 @@ Oops! Il semble que vous fassiez trop de requêtes. Veuillez ralentir un peu. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6185,7 +6157,7 @@ Cette action n’est pas autorisée. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6225,7 +6197,7 @@ Internationalisation apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6957,7 +6929,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6969,7 +6941,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6978,11 +6950,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6991,11 +6963,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7115,7 +7087,7 @@ Étiquette libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7456,11 +7428,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7468,7 +7440,7 @@ Conditions d’utilisation libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7592,7 +7564,7 @@ Liste de suivi libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7633,11 +7605,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7728,12 +7700,20 @@ 45 - + Asset Profiles Asset Profiles libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index d85815029..caddc0c66 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -997,14 +997,18 @@ Sign in Accedi - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -1439,7 +1443,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1455,7 +1459,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -1595,7 +1599,7 @@ Informativa sulla privacy libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -1659,7 +1663,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -1795,7 +1799,7 @@ Account libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -1898,8 +1902,8 @@ Admin Control Controllo amministrativo - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 @@ -1907,7 +1911,7 @@ Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -1927,7 +1931,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -1935,7 +1939,7 @@ Funzionalità libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -1951,35 +1955,31 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 Markets Mercati - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -1991,7 +1991,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -2075,7 +2075,7 @@ Analisi libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -2139,11 +2139,11 @@ Partecipazioni libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -2295,7 +2295,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -2303,7 +2303,7 @@ Attività libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -2331,7 +2331,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -2339,7 +2339,7 @@ Portafoglio apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -2347,7 +2347,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -2379,7 +2379,7 @@ Iscrizione libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -2411,7 +2411,7 @@ Risorse libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -2563,7 +2563,7 @@ Ops! Qualcosa è andato storto. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2579,7 +2579,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2831,7 +2831,7 @@ Benchmark apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -3290,24 +3290,16 @@ Market Data Dati del mercato - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Users Utenti - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -3315,7 +3307,7 @@ Summario libs/common/src/lib/routes/routes.ts - 50 + 88 @@ -3327,7 +3319,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -3958,20 +3950,12 @@ Settings Impostazioni - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 @@ -4139,7 +4123,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -4147,7 +4131,7 @@ Licenza libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -5112,19 +5096,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -5133,11 +5117,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -5146,31 +5130,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -5179,11 +5163,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -5192,11 +5176,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -5205,19 +5189,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -5226,11 +5210,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -5239,11 +5223,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -5252,23 +5236,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -5341,7 +5325,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5588,24 +5572,16 @@ Membership Iscrizione - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Accesso - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5617,7 +5593,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5833,7 +5809,7 @@ Intervallo di date libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5880,12 +5856,8 @@ Job Queue Coda Lavori - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6033,7 +6005,7 @@ Reset Filtri libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6057,7 +6029,7 @@ Applica i Filtri libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6089,7 +6061,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6101,7 +6073,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6110,11 +6082,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6122,7 +6094,7 @@ Ops! Sembra tu stia facendo troppe richieste. Rallenta un po’ per favore. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6186,7 +6158,7 @@ Questa azione non è permessa. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6226,7 +6198,7 @@ Internazionalizzazione apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6958,7 +6930,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6970,7 +6942,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6979,11 +6951,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6992,11 +6964,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7116,7 +7088,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7457,11 +7429,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7469,7 +7441,7 @@ Termini e condizioni libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7593,7 +7565,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7634,11 +7606,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7729,12 +7701,20 @@ 45 - + Asset Profiles Profili delle risorse libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 4d79f6f11..291263317 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -996,14 +996,18 @@ Sign in Aanmelden - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -1438,7 +1442,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1454,7 +1458,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -1594,7 +1598,7 @@ Privacybeleid libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -1658,7 +1662,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -1794,7 +1798,7 @@ Rekeningen libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -1897,8 +1901,8 @@ Admin Control Beheer - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 @@ -1906,7 +1910,7 @@ Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -1926,7 +1930,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -1934,7 +1938,7 @@ Functionaliteiten libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -1950,35 +1954,31 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 Markets Markten - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -1990,7 +1990,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -2074,7 +2074,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -2138,11 +2138,11 @@ Posities libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -2294,7 +2294,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -2302,7 +2302,7 @@ Activiteiten libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -2330,7 +2330,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -2338,7 +2338,7 @@ Portefeuille apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -2346,7 +2346,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -2378,7 +2378,7 @@ Registratie libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -2410,7 +2410,7 @@ Bronnen libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -2562,7 +2562,7 @@ Oeps! Er ging iets mis. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2578,7 +2578,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2830,7 +2830,7 @@ Benchmark apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -3289,24 +3289,16 @@ Market Data Marktgegevens - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Users Gebruikers - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -3314,7 +3306,7 @@ Samenvatting libs/common/src/lib/routes/routes.ts - 50 + 88 @@ -3326,7 +3318,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -3957,20 +3949,12 @@ Settings Instellingen - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 @@ -4138,7 +4122,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -4146,7 +4130,7 @@ Licentie libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -5111,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -5132,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -5145,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -5178,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -5191,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -5204,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -5225,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -5238,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -5251,23 +5235,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -5340,7 +5324,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5587,24 +5571,16 @@ Membership Lidmaatschap - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Toegang - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5616,7 +5592,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5832,7 +5808,7 @@ Datumbereik libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5879,12 +5855,8 @@ Job Queue Opdracht Wachtrij - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6032,7 +6004,7 @@ Filters Herstellen libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6056,7 +6028,7 @@ Filters Toepassen libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6088,7 +6060,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6100,7 +6072,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6109,11 +6081,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6121,7 +6093,7 @@ Oeps! Het lijkt er op dat u te veel verzoeken indient. Doe het iets rustiger aan alstublieft. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6185,7 +6157,7 @@ Deze actie is niet toegestaan. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6225,7 +6197,7 @@ Internationalizering apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6957,7 +6929,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6969,7 +6941,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6978,11 +6950,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6991,11 +6963,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7115,7 +7087,7 @@ Label libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7456,11 +7428,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7468,7 +7440,7 @@ Servicevoorwaarden libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7592,7 +7564,7 @@ Volglijst libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7633,11 +7605,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7728,12 +7700,20 @@ 45 - + Asset Profiles Asset Profiles libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index e942acbc0..a33b4cc34 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -40,19 +40,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -61,11 +61,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -74,11 +74,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -87,19 +87,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -108,11 +108,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -121,11 +121,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -134,11 +134,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -147,23 +147,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -1215,7 +1215,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -1855,7 +1855,7 @@ Portfel apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -1863,7 +1863,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -1871,7 +1871,7 @@ Poziom Odniesienia (Benchmark) apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -1981,14 +1981,18 @@ Sign in Zaloguj się - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -2979,7 +2983,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2991,7 +2995,7 @@ Ups! Coś poszło nie tak. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3007,7 +3011,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3023,7 +3027,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -3031,7 +3035,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -3039,7 +3043,7 @@ Licencja libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -3047,7 +3051,7 @@ Polityka Prywatności libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -3079,7 +3083,7 @@ Konta libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -3142,52 +3146,36 @@ Admin Control Panel Administratora - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 Market Data Dane Rynkowe - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Settings Ustawienia - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 Users Użytkownicy - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -3203,11 +3191,11 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 @@ -3215,7 +3203,7 @@ Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -3243,7 +3231,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -3267,7 +3255,7 @@ Funkcje libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -3399,11 +3387,11 @@ Inwestycje libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -3411,31 +3399,27 @@ Podsumowanie libs/common/src/lib/routes/routes.ts - 50 + 88 Markets Rynki - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -3859,7 +3843,7 @@ Aktywności libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -3943,7 +3927,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -4043,7 +4027,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -4107,7 +4091,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -4279,7 +4263,7 @@ Analiza libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -4451,7 +4435,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -4691,7 +4675,7 @@ Rejestracja libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -4732,7 +4716,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5020,7 +5004,7 @@ Zasoby libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -5043,24 +5027,16 @@ Membership Członkostwo - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Dostęp - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5184,7 +5160,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5832,7 +5808,7 @@ Zakres Dat libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5879,12 +5855,8 @@ Job Queue Kolejka Zadań - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6032,7 +6004,7 @@ Resetuj Filtry libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6056,7 +6028,7 @@ Zastosuj Filtry libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6088,7 +6060,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6100,7 +6072,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6109,11 +6081,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6121,7 +6093,7 @@ Ups! Wygląda na to, że wykonujesz zbyt wiele zapytań. Proszę, zwolnij trochę. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6185,7 +6157,7 @@ To działanie jest niedozwolone. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6225,7 +6197,7 @@ Internacjonalizacja apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6957,7 +6929,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6969,7 +6941,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6978,11 +6950,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6991,11 +6963,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7115,7 +7087,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7456,11 +7428,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7468,7 +7440,7 @@ Warunki świadczenia usług libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7592,7 +7564,7 @@ Lista obserwowanych libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7633,11 +7605,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7728,12 +7700,20 @@ 45 - + Asset Profiles Profile zasobów libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 4f427e114..ed016957a 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -670,7 +670,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -970,7 +970,7 @@ Portefólio apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -978,7 +978,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -986,7 +986,7 @@ Referência apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -1180,14 +1180,18 @@ Sign in Iniciar sessão - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -1738,7 +1742,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1750,7 +1754,7 @@ Oops! Ocorreu um erro. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1766,7 +1770,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -1782,7 +1786,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -1814,7 +1818,7 @@ Política de Privacidade libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -1898,7 +1902,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -1965,12 +1969,8 @@ Users Utilizadores - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -2094,7 +2094,7 @@ Contas libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -2133,8 +2133,8 @@ Admin Control Controlo Administrativo - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 @@ -2142,7 +2142,7 @@ Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -2258,7 +2258,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -2266,7 +2266,7 @@ Funcionalidades libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -2282,35 +2282,31 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 Markets Mercados - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -2318,7 +2314,7 @@ Atividades libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -2454,7 +2450,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -2582,7 +2578,7 @@ Análise libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -2662,11 +2658,11 @@ Posições libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -2698,7 +2694,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -2750,7 +2746,7 @@ Registo libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -2802,7 +2798,7 @@ Recursos libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -3249,12 +3245,8 @@ Market Data Dados de Mercado - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 @@ -3262,7 +3254,7 @@ Sumário libs/common/src/lib/routes/routes.ts - 50 + 88 @@ -3326,7 +3318,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -3957,20 +3949,12 @@ Settings Definições - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 @@ -4138,7 +4122,7 @@ Registo de alterações libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -4146,7 +4130,7 @@ Licença libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -5111,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -5132,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -5145,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -5178,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -5191,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -5204,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -5225,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -5238,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -5251,23 +5235,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -5340,7 +5324,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5587,24 +5571,16 @@ Membership Associação - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Acesso - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5616,7 +5592,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5832,7 +5808,7 @@ Período libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5879,12 +5855,8 @@ Job Queue Fila de trabalhos - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6032,7 +6004,7 @@ Redefinir filtros libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6056,7 +6028,7 @@ Aplicar filtros libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6088,7 +6060,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6100,7 +6072,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6109,11 +6081,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6121,7 +6093,7 @@ Oops! It looks like you’re making too many requests. Please slow down a bit. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6185,7 +6157,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6225,7 +6197,7 @@ Internationalization apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6957,7 +6929,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6969,7 +6941,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6978,11 +6950,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6991,11 +6963,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7115,7 +7087,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7456,11 +7428,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7468,7 +7440,7 @@ Termos de Serviço libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7592,7 +7564,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7633,11 +7605,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7728,12 +7700,20 @@ 45 - + Asset Profiles Perfis de ativos libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 110a4b918..0261723df 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -40,19 +40,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -61,11 +61,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -74,11 +74,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -87,19 +87,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -108,11 +108,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -121,11 +121,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -134,11 +134,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -147,23 +147,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -1167,7 +1167,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -1715,7 +1715,7 @@ Portföy apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -1723,7 +1723,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -1731,7 +1731,7 @@ Karşılaştırma Ölçütü apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -1829,14 +1829,18 @@ Sign in Giriş - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -2555,7 +2559,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2567,7 +2571,7 @@ Hay Allah! Bir şeyler yanlış gitti. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2583,7 +2587,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2599,7 +2603,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -2607,7 +2611,7 @@ Değişiklik Günlüğü libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -2615,7 +2619,7 @@ Lisans libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -2623,7 +2627,7 @@ Gizlilik Politikası libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -2655,7 +2659,7 @@ Hesaplar libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -2686,52 +2690,36 @@ Admin Control Yönetici Denetimleri - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 Market Data Piyasa Verileri - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Settings Ayarlar - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 Users Kullanıcılar - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -2747,11 +2735,11 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 @@ -2759,7 +2747,7 @@ Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -2787,7 +2775,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -2811,7 +2799,7 @@ Özellikler libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -2955,11 +2943,11 @@ Varlıklar libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -2967,31 +2955,27 @@ Özet libs/common/src/lib/routes/routes.ts - 50 + 88 Markets Piyasalar - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -3363,7 +3347,7 @@ İşlemler libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -3423,7 +3407,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -3523,7 +3507,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -3595,7 +3579,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -3767,7 +3751,7 @@ Analiz libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -3923,7 +3907,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -4163,7 +4147,7 @@ Kayıt libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -4224,7 +4208,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -4504,7 +4488,7 @@ Kaynaklar libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -5587,24 +5571,16 @@ Membership Üyelik - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Erişim - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5616,7 +5592,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5832,7 +5808,7 @@ Tarih Aralığı libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5879,12 +5855,8 @@ Job Queue İş Kuyruğu - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6032,7 +6004,7 @@ Filtreleri Sıfırla libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6056,7 +6028,7 @@ Filtreleri Uygula libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6088,7 +6060,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6100,7 +6072,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6109,11 +6081,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6121,7 +6093,7 @@ Oops! Görünüşe göre çok fazla istekte bulunuyorsunuz. Lütfen biraz yavaşlayın. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6185,7 +6157,7 @@ Bu işlem izin verilmiyor. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6225,7 +6197,7 @@ İnternasyonalizasyon apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6957,7 +6929,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6969,7 +6941,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6978,11 +6950,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6991,11 +6963,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7115,7 +7087,7 @@ Etiket libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7456,11 +7428,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7468,7 +7440,7 @@ Hizmet Koşulları libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7592,7 +7564,7 @@ İzleme Listesi libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7633,11 +7605,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7728,12 +7700,20 @@ 45 - + Asset Profiles Varlık Profilleri libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index cef816b83..ee1d6d022 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -6,7 +6,7 @@ Функції libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -14,20 +14,24 @@ Інтернаціоналізація apps/client/src/app/app-routing.module.ts - 92 + 93 Sign in Увійти - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + You are using the Live Demo. @@ -371,31 +375,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -404,11 +408,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -417,11 +421,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -430,19 +434,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -451,11 +455,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -464,19 +468,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -485,11 +489,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -498,11 +502,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -511,23 +515,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -1207,7 +1211,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -2139,7 +2143,7 @@ Портфель apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -2147,7 +2151,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -2155,7 +2159,7 @@ Порівняльний показник apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -3179,7 +3183,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3503,7 +3507,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3515,7 +3519,7 @@ Ця дія заборонена. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -3523,7 +3527,7 @@ Упс! Щось пішло не так. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3535,7 +3539,7 @@ Упс! Здається, ви робите занадто багато запитів. Будь ласка, пригальмуй трохи. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -3547,7 +3551,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -3555,7 +3559,7 @@ Журнал змін libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -3563,7 +3567,7 @@ Ліцензія libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -3571,7 +3575,7 @@ Політика конфіденційності libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -3603,7 +3607,7 @@ Рахунки libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -3666,64 +3670,44 @@ Admin Control Управління адміністратором - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 Job Queue Черга завдань - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 Market Data Ринкові дані - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Settings Налаштування - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 Users Користувачі - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -3739,11 +3723,11 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 @@ -3759,7 +3743,7 @@ Блог libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -3787,7 +3771,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -3807,7 +3791,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -3819,7 +3803,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -3828,11 +3812,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -3980,11 +3964,11 @@ Активи libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -3992,31 +3976,27 @@ Зведення libs/common/src/lib/routes/routes.ts - 50 + 88 Markets Ринки - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -4464,7 +4444,7 @@ Активності libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -4540,7 +4520,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -4660,7 +4640,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -4740,7 +4720,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -4928,7 +4908,7 @@ Аналіз libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -5192,7 +5172,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -5440,7 +5420,7 @@ Реєстрація libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -5476,7 +5456,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -5496,7 +5476,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -5513,11 +5493,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -5526,11 +5506,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -5547,7 +5527,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -6107,31 +6087,23 @@ Ресурси libs/common/src/lib/routes/routes.ts - 231 + 284 Membership Членство - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access Доступ - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -6335,7 +6307,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -6351,7 +6323,7 @@ Діапазон дат libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -6359,7 +6331,7 @@ Тег libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -6367,7 +6339,7 @@ Скинути фільтри libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6375,7 +6347,7 @@ Застосувати фільтри libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -7456,11 +7428,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7468,7 +7440,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7592,7 +7564,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7633,11 +7605,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7728,12 +7700,20 @@ 45 - + Asset Profiles Asset Profiles libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index bd1a693bd..5220958fb 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -39,19 +39,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -59,11 +59,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -71,11 +71,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -83,19 +83,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -103,11 +103,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -115,11 +115,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -127,11 +127,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -139,23 +139,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -1158,7 +1158,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -1757,7 +1757,7 @@ Portfolio apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -1765,14 +1765,14 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 Benchmark apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -1871,14 +1871,18 @@ Sign in - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -2770,7 +2774,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2781,7 +2785,7 @@ Oops! Something went wrong. apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2796,7 +2800,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2811,28 +2815,28 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 Changelog libs/common/src/lib/routes/routes.ts - 118 + 162 License libs/common/src/lib/routes/routes.ts - 126 + 170 Privacy Policy libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -2860,7 +2864,7 @@ Accounts libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -2915,49 +2919,33 @@ Admin Control - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 Market Data - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Settings - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 Users - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -2972,18 +2960,18 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 Blog libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -3008,7 +2996,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -3030,7 +3018,7 @@ Features libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -3146,41 +3134,37 @@ Holdings libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 Summary libs/common/src/lib/routes/routes.ts - 50 + 88 Markets - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -3554,7 +3538,7 @@ Activities libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -3629,7 +3613,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -3718,7 +3702,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -3775,7 +3759,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -3929,7 +3913,7 @@ Analysis libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -4082,7 +4066,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -4298,7 +4282,7 @@ Registration libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -4334,7 +4318,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -4616,7 +4600,7 @@ Resources libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -4636,23 +4620,15 @@ Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -4770,7 +4746,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5291,7 +5267,7 @@ Date Range libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5347,12 +5323,8 @@ Job Queue - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -5476,7 +5448,7 @@ Reset Filters libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -5504,7 +5476,7 @@ Apply Filters libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -5512,11 +5484,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -5527,7 +5499,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -5556,14 +5528,14 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 Oops! It looks like you’re making too many requests. Please slow down a bit. apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -5612,7 +5584,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -5654,7 +5626,7 @@ Internationalization apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6295,7 +6267,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6303,11 +6275,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -6318,7 +6290,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6326,11 +6298,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6414,7 +6386,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -6726,7 +6698,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -6734,11 +6706,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -6822,7 +6794,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -6869,11 +6841,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -6953,11 +6925,18 @@ 45 - + Asset Profiles libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index ccc50468b..b93babff1 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -8,31 +8,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 109 + 153 libs/common/src/lib/routes/routes.ts - 110 + 154 libs/common/src/lib/routes/routes.ts - 115 + 159 libs/common/src/lib/routes/routes.ts - 123 + 167 libs/common/src/lib/routes/routes.ts - 130 + 174 libs/common/src/lib/routes/routes.ts - 136 + 180 libs/common/src/lib/routes/routes.ts - 144 + 188 @@ -41,19 +41,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 158 + 207 libs/common/src/lib/routes/routes.ts - 159 + 208 libs/common/src/lib/routes/routes.ts - 163 + 212 libs/common/src/lib/routes/routes.ts - 169 + 218 @@ -62,11 +62,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 227 libs/common/src/lib/routes/routes.ts - 179 + 228 @@ -75,11 +75,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 121 + 165 libs/common/src/lib/routes/routes.ts - 124 + 168 @@ -88,19 +88,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 183 + 232 libs/common/src/lib/routes/routes.ts - 184 + 233 libs/common/src/lib/routes/routes.ts - 223 + 276 libs/common/src/lib/routes/routes.ts - 226 + 279 @@ -109,11 +109,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 193 + 242 libs/common/src/lib/routes/routes.ts - 194 + 243 @@ -122,11 +122,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 134 + 178 libs/common/src/lib/routes/routes.ts - 137 + 181 @@ -135,11 +135,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 198 + 251 libs/common/src/lib/routes/routes.ts - 199 + 252 @@ -148,23 +148,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 203 + 256 libs/common/src/lib/routes/routes.ts - 204 + 257 libs/common/src/lib/routes/routes.ts - 209 + 262 libs/common/src/lib/routes/routes.ts - 217 + 270 libs/common/src/lib/routes/routes.ts - 225 + 278 @@ -1224,7 +1224,7 @@ libs/ui/src/lib/assistant/assistant.html - 204 + 206 @@ -1864,7 +1864,7 @@ 投资组合 apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 122 + 120 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -1872,7 +1872,7 @@ libs/common/src/lib/routes/routes.ts - 90 + 128 @@ -1880,7 +1880,7 @@ 基准 apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 134 + 132 @@ -1990,14 +1990,18 @@ Sign in 登入 - - apps/client/src/app/app-routing.module.ts - 154 - apps/client/src/app/components/header/header.component.ts 242 + + libs/common/src/lib/routes/routes.ts + 69 + + + libs/common/src/lib/routes/routes.ts + 134 + Oops! Incorrect Security Token. @@ -2988,7 +2992,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 86 + 88 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3000,7 +3004,7 @@ 哎呀!出了些问题。 apps/client/src/app/core/http-response.interceptor.ts - 84 + 86 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3016,7 +3020,7 @@ apps/client/src/app/core/http-response.interceptor.ts - 87 + 89 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -3032,7 +3036,7 @@ libs/common/src/lib/routes/routes.ts - 150 + 194 @@ -3040,7 +3044,7 @@ 更新日志 libs/common/src/lib/routes/routes.ts - 118 + 162 @@ -3048,7 +3052,7 @@ 许可证 libs/common/src/lib/routes/routes.ts - 126 + 170 @@ -3056,7 +3060,7 @@ 隐私政策 libs/common/src/lib/routes/routes.ts - 139 + 183 @@ -3088,7 +3092,7 @@ 账户 libs/common/src/lib/routes/routes.ts - 36 + 63 @@ -3151,52 +3155,36 @@ Admin Control 管理控制 - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 21 + libs/common/src/lib/routes/routes.ts + 58 Market Data 市场数据 - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 31 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 39 + libs/common/src/lib/routes/routes.ts + 45 Settings 设置 - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 36 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 34 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 19 + libs/common/src/lib/routes/routes.ts + 30 libs/common/src/lib/routes/routes.ts - 31 + 50 Users 用户 - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 41 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 49 + libs/common/src/lib/routes/routes.ts + 55 @@ -3212,11 +3200,11 @@ libs/common/src/lib/routes/routes.ts - 58 + 96 libs/common/src/lib/routes/routes.ts - 103 + 147 @@ -3224,7 +3212,7 @@ 博客 libs/common/src/lib/routes/routes.ts - 155 + 199 @@ -3252,7 +3240,7 @@ libs/common/src/lib/routes/routes.ts - 175 + 224 @@ -3276,7 +3264,7 @@ 功能 libs/common/src/lib/routes/routes.ts - 180 + 229 @@ -3408,11 +3396,11 @@ 持仓 libs/common/src/lib/routes/routes.ts - 45 + 78 libs/common/src/lib/routes/routes.ts - 100 + 144 @@ -3420,31 +3408,27 @@ 汇总 libs/common/src/lib/routes/routes.ts - 50 + 88 Markets 市场 - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 59 - apps/client/src/app/pages/resources/resources-page.component.ts 30 libs/common/src/lib/routes/routes.ts - 185 + 83 libs/common/src/lib/routes/routes.ts - 228 + 234 + + + libs/common/src/lib/routes/routes.ts + 281 @@ -3868,7 +3852,7 @@ 活动 libs/common/src/lib/routes/routes.ts - 67 + 105 @@ -3952,7 +3936,7 @@ libs/ui/src/lib/assistant/assistant.html - 143 + 145 @@ -4052,7 +4036,7 @@ libs/ui/src/lib/assistant/assistant.html - 165 + 167 @@ -4116,7 +4100,7 @@ libs/common/src/lib/routes/routes.ts - 72 + 110 @@ -4288,7 +4272,7 @@ 分析 libs/common/src/lib/routes/routes.ts - 77 + 115 @@ -4460,7 +4444,7 @@ libs/common/src/lib/routes/routes.ts - 195 + 244 @@ -4700,7 +4684,7 @@ 注册 libs/common/src/lib/routes/routes.ts - 200 + 253 @@ -4741,7 +4725,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 24 + 11 @@ -5053,7 +5037,7 @@ 资源 libs/common/src/lib/routes/routes.ts - 231 + 284 @@ -5076,24 +5060,16 @@ Membership 会员资格 - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 24 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 42 + libs/common/src/lib/routes/routes.ts + 27 Access 使用权 - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 29 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 51 + libs/common/src/lib/routes/routes.ts + 22 @@ -5225,7 +5201,7 @@ libs/ui/src/lib/assistant/assistant.html - 119 + 120 @@ -5817,7 +5793,7 @@ 日期范围 libs/ui/src/lib/assistant/assistant.html - 129 + 131 @@ -5880,12 +5856,8 @@ Job Queue 作业队列 - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 26 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 44 + libs/common/src/lib/routes/routes.ts + 40 @@ -6025,7 +5997,7 @@ 重置过滤器 libs/ui/src/lib/assistant/assistant.html - 223 + 225 @@ -6057,7 +6029,7 @@ 应用过滤器 libs/ui/src/lib/assistant/assistant.html - 233 + 235 @@ -6066,11 +6038,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 167 + 216 libs/common/src/lib/routes/routes.ts - 170 + 219 @@ -6082,7 +6054,7 @@ libs/common/src/lib/routes/routes.ts - 172 + 221 @@ -6114,7 +6086,7 @@ libs/common/src/lib/routes/routes.ts - 164 + 213 @@ -6122,7 +6094,7 @@ 哎呀!看来您提出了太多要求。请慢一点。 apps/client/src/app/core/http-response.interceptor.ts - 104 + 106 @@ -6186,7 +6158,7 @@ 不允许执行此操作。 apps/client/src/app/core/http-response.interceptor.ts - 65 + 67 @@ -6226,7 +6198,7 @@ 国际化 apps/client/src/app/app-routing.module.ts - 92 + 93 @@ -6958,7 +6930,7 @@ libs/common/src/lib/routes/routes.ts - 212 + 265 @@ -6970,7 +6942,7 @@ libs/common/src/lib/routes/routes.ts - 220 + 273 @@ -6979,11 +6951,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 215 + 268 libs/common/src/lib/routes/routes.ts - 218 + 271 @@ -6992,11 +6964,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 260 libs/common/src/lib/routes/routes.ts - 210 + 263 @@ -7116,7 +7088,7 @@ 标签 libs/ui/src/lib/assistant/assistant.html - 193 + 195 @@ -7457,11 +7429,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 142 + 186 libs/common/src/lib/routes/routes.ts - 145 + 189 @@ -7469,7 +7441,7 @@ 服务条款 libs/common/src/lib/routes/routes.ts - 147 + 191 @@ -7593,7 +7565,7 @@ 关注列表 libs/common/src/lib/routes/routes.ts - 55 + 93 @@ -7634,11 +7606,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 113 + 157 libs/common/src/lib/routes/routes.ts - 116 + 160 @@ -7729,12 +7701,20 @@ 45 - + Asset Profiles 资产概况 libs/ui/src/lib/assistant/assistant.html - 96 + 97 + + + + Live Demo + Live Demo + + libs/common/src/lib/routes/routes.ts + 204 From 153b162927923cabc3452931599e5b48afd9a9a1 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 16 Jun 2025 20:20:23 +0200 Subject: [PATCH 04/56] Feature/refactor various routes (part 3) (#4951) * Refactor various routes --- apps/client/src/app/app-routing.module.ts | 14 +++----- .../components/header/header.component.html | 13 ++++--- .../app/components/header/header.component.ts | 7 +--- .../glossary/resources-glossary.component.ts | 8 ++--- ...sonal-finance-tools-page-routing.module.ts | 8 ++--- .../personal-finance-tools-page.component.ts | 8 +++-- .../personal-finance-tools-page.html | 4 +-- .../product-page.component.ts | 8 ++--- .../resources-page-routing.module.ts | 11 +++--- libs/common/src/lib/routes/routes.ts | 35 ++++++++++++++----- 10 files changed, 63 insertions(+), 53 deletions(-) diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index a7e587ea8..7eac28c87 100644 --- a/apps/client/src/app/app-routing.module.ts +++ b/apps/client/src/app/app-routing.module.ts @@ -1,10 +1,6 @@ import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; import { PageTitleStrategy } from '@ghostfolio/client/services/page-title.strategy'; -import { - publicRoutes, - routes as ghostfolioRoutes, - internalRoutes -} from '@ghostfolio/common/routes/routes'; +import { publicRoutes, internalRoutes } from '@ghostfolio/common/routes/routes'; import { NgModule } from '@angular/core'; import { RouterModule, Routes, TitleStrategy } from '@angular/router'; @@ -42,8 +38,8 @@ const routes: Routes = [ import('./pages/api/api-page.component').then( (c) => c.GfApiPageComponent ), - path: ghostfolioRoutes.api, - title: 'Ghostfolio API' + path: internalRoutes.api.path, + title: internalRoutes.api.title }, { path: internalRoutes.auth.path, @@ -89,8 +85,8 @@ const routes: Routes = [ import('./pages/i18n/i18n-page.component').then( (c) => c.GfI18nPageComponent ), - path: ghostfolioRoutes.i18n, - title: $localize`Internationalization` + path: internalRoutes.i18n.path, + title: internalRoutes.i18n.title }, { path: publicRoutes.markets.path, diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index c1475d549..3f443dfea 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -65,8 +65,10 @@ i18n mat-flat-button [ngClass]="{ - 'font-weight-bold': currentRoute === routes.adminControl, - 'text-decoration-underline': currentRoute === routes.adminControl + 'font-weight-bold': + currentRoute === internalRoutes.adminControl.path, + 'text-decoration-underline': + currentRoute === internalRoutes.adminControl.path }" [routerLink]="routerLinkAdminControl" >Admin ControlMy Ghostfolio @@ -278,7 +282,8 @@ i18n mat-menu-item [ngClass]="{ - 'font-weight-bold': currentRoute === routes.adminControl + 'font-weight-bold': + currentRoute === internalRoutes.adminControl.path }" [routerLink]="routerLinkAdminControl" >Admin Control(); diff --git a/apps/client/src/app/pages/resources/glossary/resources-glossary.component.ts b/apps/client/src/app/pages/resources/glossary/resources-glossary.component.ts index c9d94d8ed..81ae00fe1 100644 --- a/apps/client/src/app/pages/resources/glossary/resources-glossary.component.ts +++ b/apps/client/src/app/pages/resources/glossary/resources-glossary.component.ts @@ -1,7 +1,7 @@ import { DataService } from '@ghostfolio/client/services/data.service'; import { InfoItem } from '@ghostfolio/common/interfaces'; import { hasPermission, permissions } from '@ghostfolio/common/permissions'; -import { publicRoutes, routes } from '@ghostfolio/common/routes/routes'; +import { publicRoutes } from '@ghostfolio/common/routes/routes'; import { Component, OnInit } from '@angular/core'; @@ -14,10 +14,8 @@ import { Component, OnInit } from '@angular/core'; export class ResourcesGlossaryPageComponent implements OnInit { public hasPermissionForSubscription: boolean; public info: InfoItem; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + publicRoutes.resources.path, - routes.personalFinanceTools - ]; + public routerLinkResourcesPersonalFinanceTools = + publicRoutes.resources.subRoutes.personalFinanceTools.routerLink; public constructor(private dataService: DataService) { this.info = this.dataService.fetchInfo(); diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts b/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts index e8c256c0d..13b6cfbaf 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts +++ b/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts @@ -1,6 +1,6 @@ import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; -import { routes as ghostfolioRoutes } from '@ghostfolio/common/routes/routes'; +import { publicRoutes } from '@ghostfolio/common/routes/routes'; import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; @@ -12,7 +12,7 @@ const routes: Routes = [ canActivate: [AuthGuard], component: PersonalFinanceToolsPageComponent, path: '', - title: $localize`Personal Finance Tools` + title: publicRoutes.resources.subRoutes.personalFinanceTools.title }, ...personalFinanceTools.map(({ alias, key, name }) => { return { @@ -24,8 +24,8 @@ const routes: Routes = [ return GfProductPageComponent; } ), - path: `${ghostfolioRoutes.openSourceAlternativeTo}-${alias ?? key}`, - title: $localize`Open Source Alternative to ${name}` + path: `${publicRoutes.resources.subRoutes.personalFinanceTools.subRoutes.product.path}-${alias ?? key}`, + title: `${publicRoutes.resources.subRoutes.personalFinanceTools.subRoutes.product.title} ${name}` }; }) ]; 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 59b4c80bf..e450aa65e 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 @@ -1,5 +1,5 @@ import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; -import { publicRoutes, routes } from '@ghostfolio/common/routes/routes'; +import { publicRoutes } from '@ghostfolio/common/routes/routes'; import { Component, OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; @@ -12,8 +12,12 @@ import { Subject } from 'rxjs'; standalone: false }) export class PersonalFinanceToolsPageComponent implements OnDestroy { - public pathAlternativeTo = routes.openSourceAlternativeTo + '-'; + public pathAlternativeTo = + publicRoutes.resources.subRoutes.personalFinanceTools.subRoutes.product + .path + '-'; public pathResources = publicRoutes.resources.path; + public pathPersonalFinanceTools = + publicRoutes.resources.subRoutes.personalFinanceTools.path; public personalFinanceTools = personalFinanceTools.sort((a, b) => { return a.name.localeCompare(b.name, undefined, { sensitivity: 'base' }); }); 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 f3c128433..3e4784307 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 @@ -32,8 +32,8 @@ personalFinanceTool.name }} - {{ personalFinanceTool.slogan }}" [routerLink]="[ - pathResources, - 'personal-finance-tools', + '/' + pathResources, + pathPersonalFinanceTools, pathAlternativeTo + (personalFinanceTool.alias ?? personalFinanceTool.key) ]" diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts index 3694fc227..caf29e7a0 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts +++ b/apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -1,7 +1,7 @@ import { DataService } from '@ghostfolio/client/services/data.service'; import { Product } from '@ghostfolio/common/interfaces'; import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; -import { publicRoutes, routes } from '@ghostfolio/common/routes/routes'; +import { publicRoutes } from '@ghostfolio/common/routes/routes'; import { translate } from '@ghostfolio/ui/i18n'; import { Component, OnInit } from '@angular/core'; @@ -22,10 +22,8 @@ export class GfProductPageComponent implements OnInit { public product2: Product; public routerLinkAbout = publicRoutes.about.routerLink; public routerLinkFeatures = publicRoutes.features.routerLink; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + publicRoutes.resources.path, - routes.personalFinanceTools - ]; + public routerLinkResourcesPersonalFinanceTools = + publicRoutes.resources.subRoutes.personalFinanceTools.routerLink; public tags: string[]; public constructor( diff --git a/apps/client/src/app/pages/resources/resources-page-routing.module.ts b/apps/client/src/app/pages/resources/resources-page-routing.module.ts index 19a08ba1d..51d9e2c73 100644 --- a/apps/client/src/app/pages/resources/resources-page-routing.module.ts +++ b/apps/client/src/app/pages/resources/resources-page-routing.module.ts @@ -1,8 +1,5 @@ import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; -import { - routes as ghostfolioRoutes, - publicRoutes -} from '@ghostfolio/common/routes/routes'; +import { publicRoutes } from '@ghostfolio/common/routes/routes'; import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; @@ -42,13 +39,13 @@ const routes: Routes = [ (m) => m.ResourcesMarketsModule ) }, - ...[ghostfolioRoutes.personalFinanceTools].map((path) => ({ - path, + { + path: publicRoutes.resources.subRoutes.personalFinanceTools.path, loadChildren: () => import( './personal-finance-tools/personal-finance-tools-page.module' ).then((m) => m.PersonalFinanceToolsPageModule) - })) + } ], path: '', title: publicRoutes.resources.title diff --git a/libs/common/src/lib/routes/routes.ts b/libs/common/src/lib/routes/routes.ts index adf2b5704..20d911d24 100644 --- a/libs/common/src/lib/routes/routes.ts +++ b/libs/common/src/lib/routes/routes.ts @@ -2,15 +2,6 @@ import '@angular/localize/init'; import { IRoute } from './interfaces/interfaces'; -export const routes = { - api: 'api', - i18n: 'i18n', - personalFinanceTools: 'personal-finance-tools', - - // Publicly accessible pages - openSourceAlternativeTo: $localize`:kebab-case:open-source-alternative-to` -}; - export const internalRoutes: Record = { account: { path: 'account', @@ -62,6 +53,12 @@ export const internalRoutes: Record = { routerLink: ['/accounts'], title: $localize`Accounts` }, + api: { + excludeFromAssistant: true, + path: 'api', + routerLink: ['/api'], + title: 'Ghostfolio API' + }, auth: { excludeFromAssistant: true, path: 'auth', @@ -95,6 +92,12 @@ export const internalRoutes: Record = { }, title: $localize`Overview` }, + i18n: { + excludeFromAssistant: true, + path: 'i18n', + routerLink: ['/i18n'], + title: $localize`Internationalization` + }, portfolio: { path: 'portfolio', routerLink: ['/portfolio'], @@ -279,6 +282,20 @@ export const publicRoutes = { $localize`:kebab-case:markets` ], title: $localize`Markets` + }, + personalFinanceTools: { + path: 'personal-finance-tools', + routerLink: [ + '/' + $localize`:kebab-case:resources`, + 'personal-finance-tools' + ], + subRoutes: { + product: { + path: $localize`:kebab-case:open-source-alternative-to`, + title: $localize`Open Source Alternative to` + } + }, + title: $localize`Personal Finance Tools` } }, title: $localize`Resources` From b0e1065f79f06a3c65a41526cd7a7f91f2443d93 Mon Sep 17 00:00:00 2001 From: Tahbit Fehran Date: Tue, 17 Jun 2025 00:32:25 +0600 Subject: [PATCH 05/56] Feature/conditionally display date range options based on first user activity (#4945) * Conditionally display date range options based on first user activity * Update changelog --- CHANGELOG.md | 3 +- .../src/lib/assistant/assistant.component.ts | 37 ++++++++++++++----- 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5909cb3a1..feac50910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Changelog +### Changed +- Adapted the options of the date range selector in the assistant dynamically based on the user’s first activity - Migrated the `@ghostfolio/ui/assistant` component to control flow - Migrated the `@ghostfolio/ui/value` component to control flow - Improved the language localization for Chinese (`zh`) diff --git a/libs/ui/src/lib/assistant/assistant.component.ts b/libs/ui/src/lib/assistant/assistant.component.ts index a74ef310a..a5a5fdb9f 100644 --- a/libs/ui/src/lib/assistant/assistant.component.ts +++ b/libs/ui/src/lib/assistant/assistant.component.ts @@ -40,6 +40,7 @@ import { MatMenuTrigger } from '@angular/material/menu'; import { MatSelectModule } from '@angular/material/select'; import { RouterModule } from '@angular/router'; import { Account, AssetClass, DataSource } from '@prisma/client'; +import { differenceInYears } from 'date-fns'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; import { EMPTY, Observable, Subject, merge, of } from 'rxjs'; import { @@ -333,7 +334,10 @@ export class GfAssistantComponent implements OnChanges, OnDestroy, OnInit { this.accounts = this.user?.accounts ?? []; this.dateRangeOptions = [ - { label: $localize`Today`, value: '1d' }, + { + label: $localize`Today`, + value: '1d' + }, { label: $localize`Week to date` + ' (' + $localize`WTD` + ')', value: 'wtd' @@ -345,13 +349,19 @@ export class GfAssistantComponent implements OnChanges, OnDestroy, OnInit { { label: $localize`Year to date` + ' (' + $localize`YTD` + ')', value: 'ytd' - }, - { - label: '1 ' + $localize`year` + ' (' + $localize`1Y` + ')', - value: '1y' } ]; + if ( + this.user?.dateOfFirstActivity && + differenceInYears(new Date(), this.user.dateOfFirstActivity) >= 1 + ) { + this.dateRangeOptions.push({ + label: '1 ' + $localize`year` + ' (' + $localize`1Y` + ')', + value: '1y' + }); + } + // TODO // if (this.user?.settings?.isExperimentalFeatures) { // this.dateRangeOptions = this.dateRangeOptions.concat( @@ -367,13 +377,20 @@ export class GfAssistantComponent implements OnChanges, OnDestroy, OnInit { // ); // } - this.dateRangeOptions = this.dateRangeOptions.concat([ - { + if ( + this.user?.dateOfFirstActivity && + differenceInYears(new Date(), this.user.dateOfFirstActivity) >= 5 + ) { + this.dateRangeOptions.push({ label: '5 ' + $localize`years` + ' (' + $localize`5Y` + ')', value: '5y' - }, - { label: $localize`Max`, value: 'max' } - ]); + }); + } + + this.dateRangeOptions.push({ + label: $localize`Max`, + value: 'max' + }); this.dateRangeFormControl.disable({ emitEvent: false }); From 78d8a1c8d4b19aa7fedfec7b84c2654597a769b5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 20:51:34 +0200 Subject: [PATCH 06/56] Feature/update locales (#4952) * Update locales * Update translations --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- apps/client/src/locales/messages.ca.xlf | 302 +++++++++++------------ apps/client/src/locales/messages.de.xlf | 304 +++++++++++------------ apps/client/src/locales/messages.es.xlf | 302 +++++++++++------------ apps/client/src/locales/messages.fr.xlf | 302 +++++++++++------------ apps/client/src/locales/messages.it.xlf | 302 +++++++++++------------ apps/client/src/locales/messages.nl.xlf | 310 ++++++++++++------------ apps/client/src/locales/messages.pl.xlf | 310 ++++++++++++------------ apps/client/src/locales/messages.pt.xlf | 310 ++++++++++++------------ apps/client/src/locales/messages.tr.xlf | 302 +++++++++++------------ apps/client/src/locales/messages.uk.xlf | 302 +++++++++++------------ apps/client/src/locales/messages.xlf | 300 ++++++++++++----------- apps/client/src/locales/messages.zh.xlf | 302 +++++++++++------------ 12 files changed, 1860 insertions(+), 1788 deletions(-) diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 81d20e741..2d59d3a6f 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -6,15 +6,15 @@ Característiques libs/common/src/lib/routes/routes.ts - 229 + 232 Internationalization Internacionalització - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -22,15 +22,15 @@ Iniciar sessió apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -78,7 +78,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -98,11 +98,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -118,11 +118,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -242,7 +242,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -282,15 +282,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -375,31 +375,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -408,11 +408,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -421,11 +421,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -434,19 +434,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -455,11 +455,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -468,19 +468,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -489,11 +489,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -502,11 +502,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -515,23 +515,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -1847,7 +1851,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -2031,11 +2035,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -2063,7 +2067,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -2075,7 +2079,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -2083,11 +2087,11 @@ Panell d’Administració apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -2095,7 +2099,7 @@ Millora la teva Subscripció apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2115,7 +2119,7 @@ Renova la teva Subscripció apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -2131,7 +2135,7 @@ Tu apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -2143,7 +2147,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -2151,7 +2155,7 @@ El meu Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -2159,7 +2163,7 @@ Sobre Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2171,7 +2175,7 @@ Iniciar Sessió apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2183,7 +2187,7 @@ Primers Passos apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -2191,7 +2195,7 @@ Oooh! El testimoni de seguretat és incorrecte. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -2895,7 +2899,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -2907,7 +2911,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -2919,7 +2923,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -2931,7 +2935,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -2943,7 +2947,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -3343,7 +3347,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -3351,7 +3355,7 @@ Registre de canvis libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -3359,7 +3363,7 @@ llicència libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -3367,7 +3371,7 @@ Política de privadesa libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -3399,7 +3403,7 @@ Comptes libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -3463,7 +3467,7 @@ Control d’administració libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -3471,7 +3475,7 @@ Cua de treball libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -3479,7 +3483,7 @@ Dades de mercat libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3487,11 +3491,11 @@ Configuració libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -3499,7 +3503,7 @@ Usuaris libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -3515,11 +3519,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -3527,7 +3531,7 @@ Bloc libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -3555,7 +3559,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -3575,7 +3579,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -3587,7 +3591,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -3596,11 +3600,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -3748,11 +3752,11 @@ Explotacions libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -3760,7 +3764,7 @@ Resum libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3772,15 +3776,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -4228,7 +4232,7 @@ Activitats libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -4468,7 +4472,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -4656,7 +4660,7 @@ Anàlisi libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -4684,7 +4688,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -4872,7 +4876,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -5096,7 +5100,7 @@ Registration libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -5127,8 +5131,8 @@ Personal Finance Tools Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -5137,15 +5141,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 - - - - Open Source Alternative to - Open Source Alternative to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 + 294 @@ -5185,7 +5181,7 @@ Switzerland apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5197,7 +5193,7 @@ Global apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5449,7 +5445,7 @@ Resources libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -5473,7 +5469,7 @@ Membership libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5481,7 +5477,7 @@ Access libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5625,7 +5621,7 @@ Week to date libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5633,7 +5629,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5641,7 +5637,7 @@ Month to date libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5649,7 +5645,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5657,7 +5653,7 @@ Year to date libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -5665,7 +5661,7 @@ year libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -5673,7 +5669,7 @@ years libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6325,7 +6321,7 @@ Alternative apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6333,7 +6329,7 @@ App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6341,7 +6337,7 @@ Budgeting apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6349,7 +6345,7 @@ Community apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6357,7 +6353,7 @@ Family Office apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6365,7 +6361,7 @@ Investor apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6373,7 +6369,7 @@ Open Source apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6381,7 +6377,7 @@ Personal Finance apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6389,7 +6385,7 @@ Privacy apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6397,7 +6393,7 @@ Software apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6405,7 +6401,7 @@ Tool apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6413,7 +6409,7 @@ User Experience apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6421,7 +6417,7 @@ Wealth apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6429,7 +6425,7 @@ Wealth Management apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6929,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6941,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6950,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6963,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7428,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7440,7 +7436,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7564,7 +7560,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7588,7 +7584,7 @@ Log out apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7605,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7689,7 +7685,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7713,7 +7709,15 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Open Source Alternative to + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 4534b012b..265c4c0b6 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -774,7 +774,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -818,7 +818,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -830,7 +830,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -850,7 +850,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -866,11 +866,11 @@ Administration apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -882,11 +882,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -902,15 +902,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -926,11 +926,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -938,7 +938,7 @@ Ich apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -946,7 +946,7 @@ Mein Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -954,7 +954,7 @@ Über Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -970,7 +970,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -986,7 +986,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -1014,15 +1014,15 @@ Einloggen apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -1030,7 +1030,7 @@ Ups! Falsches Sicherheits-Token. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -1142,7 +1142,7 @@ Einloggen apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1398,7 +1398,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -1410,7 +1410,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -1422,7 +1422,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -1434,7 +1434,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -1446,7 +1446,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -1474,7 +1474,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -1614,7 +1614,7 @@ Datenschutzbestimmungen libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -1814,7 +1814,7 @@ Konten libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -1918,7 +1918,7 @@ Administration libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -1926,7 +1926,7 @@ Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -1946,7 +1946,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -1954,7 +1954,7 @@ Features libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -1970,11 +1970,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -1986,15 +1986,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -2006,7 +2006,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -2090,7 +2090,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -2154,11 +2154,11 @@ Positionen libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -2318,7 +2318,7 @@ Aktivitäten libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -2346,7 +2346,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -2358,11 +2358,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -2394,7 +2394,7 @@ Registrierung libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -2426,7 +2426,7 @@ Ressourcen libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -2562,7 +2562,7 @@ Registrieren apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -3306,7 +3306,7 @@ Marktdaten libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3314,7 +3314,7 @@ Benutzer libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -3322,7 +3322,7 @@ Zusammenfassung libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3534,7 +3534,7 @@ Abonnement abschliessen apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3826,7 +3826,7 @@ Abonnement erneuern apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -3974,11 +3974,11 @@ Einstellungen libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -4146,7 +4146,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -4154,7 +4154,7 @@ Lizenz libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -4289,8 +4289,8 @@ Personal Finance Tools Tools für persönliche Finanzen - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -5119,19 +5119,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -5140,11 +5140,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -5153,31 +5153,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -5186,11 +5186,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -5199,11 +5199,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -5212,19 +5212,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -5233,11 +5233,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -5246,11 +5246,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -5259,23 +5259,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -5302,14 +5306,6 @@ 42 - - Open Source Alternative to - Open Source Alternative zu - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 - - The Open Source Alternative to Die Open Source Alternative zu @@ -5348,7 +5344,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 + 294 @@ -5380,7 +5376,7 @@ Schweiz apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5392,7 +5388,7 @@ Weltweit apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5596,7 +5592,7 @@ Mitgliedschaft libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5604,7 +5600,7 @@ Zugang libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5880,7 +5876,7 @@ Job Warteschlange libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5904,7 +5900,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5960,7 +5956,7 @@ Seit Wochenbeginn libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5968,7 +5964,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5976,7 +5972,7 @@ Seit Monatsbeginn libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5984,7 +5980,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5992,7 +5988,7 @@ Seit Jahresbeginn libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6036,7 +6032,7 @@ Jahr libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6044,7 +6040,7 @@ Jahre libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6084,7 +6080,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6096,7 +6092,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6105,11 +6101,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6220,8 +6216,8 @@ Internationalization Internationalisierung - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6349,7 +6345,7 @@ Alternative apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6357,7 +6353,7 @@ App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6365,7 +6361,7 @@ Budgetierung apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6373,7 +6369,7 @@ Community apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6381,7 +6377,7 @@ Family Office apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6389,7 +6385,7 @@ Investor apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6397,7 +6393,7 @@ Open Source apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6405,7 +6401,7 @@ Persönliche Finanzen apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6413,7 +6409,7 @@ Datenschutz apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6421,7 +6417,7 @@ Software apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6429,7 +6425,7 @@ Tool apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6437,7 +6433,7 @@ User Experience apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6445,7 +6441,7 @@ Vermögen apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6453,7 +6449,7 @@ Vermögensverwaltung apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6953,7 +6949,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6965,7 +6961,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6974,11 +6970,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6987,11 +6983,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7452,11 +7448,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7464,7 +7460,7 @@ Allgemeine Geschäftsbedingungen libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7564,7 +7560,7 @@ Beobachtungsliste libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7588,7 +7584,7 @@ Ausloggen apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7605,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7689,7 +7685,7 @@ Position oder Seite finden... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7710,10 +7706,18 @@ Live Demo - Live Demo + Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Open Source Alternative zu + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 45d3465f0..28f78c7b4 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -759,7 +759,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -803,7 +803,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -815,7 +815,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -835,7 +835,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -851,11 +851,11 @@ Control de administrador apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -867,11 +867,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -887,15 +887,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -911,11 +911,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -923,7 +923,7 @@ apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -931,7 +931,7 @@ Mi Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -939,7 +939,7 @@ Sobre Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -955,7 +955,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -971,7 +971,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -999,15 +999,15 @@ Iniciar sesión apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -1015,7 +1015,7 @@ Vaya! Token de seguridad incorrecto. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -1127,7 +1127,7 @@ Iniciar sesión apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1383,7 +1383,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -1395,7 +1395,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -1407,7 +1407,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -1419,7 +1419,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -1431,7 +1431,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -1459,7 +1459,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -1599,7 +1599,7 @@ Política de privacidad libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -1799,7 +1799,7 @@ Cuentas libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -1903,7 +1903,7 @@ Control de administrador libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -1911,7 +1911,7 @@ Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -1931,7 +1931,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -1939,7 +1939,7 @@ Funcionalidades libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -1955,11 +1955,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -1971,15 +1971,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -1991,7 +1991,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -2075,7 +2075,7 @@ Análisis libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -2139,11 +2139,11 @@ Participaciones libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -2303,7 +2303,7 @@ Operación libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -2331,7 +2331,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -2343,11 +2343,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -2379,7 +2379,7 @@ Registro libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -2411,7 +2411,7 @@ Recursos libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -2547,7 +2547,7 @@ Comenzar apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -3291,7 +3291,7 @@ Datos del mercado libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3299,7 +3299,7 @@ Usuarios libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -3307,7 +3307,7 @@ Resumen libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3519,7 +3519,7 @@ Mejorar plan apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3803,7 +3803,7 @@ Renovar Plan apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -3951,11 +3951,11 @@ Configuraciones libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -4123,7 +4123,7 @@ Registro de cambios libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -4131,7 +4131,7 @@ Licencia libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -4266,8 +4266,8 @@ Personal Finance Tools Herramientas de finanzas personales - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -5096,19 +5096,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -5117,11 +5117,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -5130,31 +5130,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -5163,11 +5163,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -5176,11 +5176,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -5189,19 +5189,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -5210,11 +5210,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -5223,11 +5223,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -5236,23 +5236,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -5279,14 +5283,6 @@ 42 - - Open Source Alternative to - Alternativa de software libre a - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 - - The Open Source Alternative to La alternativa de software libre a @@ -5325,7 +5321,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 + 294 @@ -5357,7 +5353,7 @@ Suiza apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5369,7 +5365,7 @@ Global apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5573,7 +5569,7 @@ Membresía libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5581,7 +5577,7 @@ Acceso libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5857,7 +5853,7 @@ Cola de trabajos libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5881,7 +5877,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5937,7 +5933,7 @@ Week to date libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5945,7 +5941,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5953,7 +5949,7 @@ Month to date libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5961,7 +5957,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5969,7 +5965,7 @@ Year to date libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6013,7 +6009,7 @@ año libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6021,7 +6017,7 @@ años libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6061,7 +6057,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6073,7 +6069,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6082,11 +6078,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6197,8 +6193,8 @@ Internationalization Internacionalización - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6326,7 +6322,7 @@ Alternative apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6334,7 +6330,7 @@ App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6342,7 +6338,7 @@ Budgeting apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6350,7 +6346,7 @@ Community apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6358,7 +6354,7 @@ Family Office apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6366,7 +6362,7 @@ Investor apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6374,7 +6370,7 @@ Open Source apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6382,7 +6378,7 @@ Personal Finance apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6390,7 +6386,7 @@ Privacy apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6398,7 +6394,7 @@ Software apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6406,7 +6402,7 @@ Tool apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6414,7 +6410,7 @@ User Experience apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6422,7 +6418,7 @@ Wealth apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6430,7 +6426,7 @@ Wealth Management apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6930,7 +6926,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6942,7 +6938,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6951,11 +6947,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6964,11 +6960,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7429,11 +7425,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7441,7 +7437,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7565,7 +7561,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7589,7 +7585,7 @@ Log out apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7606,11 +7602,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7690,7 +7686,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7714,7 +7710,15 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Alternativa de software libre a + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index c1679df01..13d50695d 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -1018,7 +1018,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -1046,7 +1046,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1102,11 +1102,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -1134,7 +1134,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -1146,7 +1146,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -1154,11 +1154,11 @@ Contrôle Administrateur apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -1170,11 +1170,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -1190,15 +1190,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -1214,11 +1214,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -1226,7 +1226,7 @@ Moi apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -1234,7 +1234,7 @@ Mon Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -1242,7 +1242,7 @@ À propos de Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1258,7 +1258,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -1274,7 +1274,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -1290,7 +1290,7 @@ Se connecter apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1302,7 +1302,7 @@ Démarrer apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -1310,15 +1310,15 @@ Se connecter apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -1326,7 +1326,7 @@ Oups! Jeton de Sécurité Incorrect. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -1690,7 +1690,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -1702,7 +1702,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -1714,7 +1714,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -1726,7 +1726,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -1738,7 +1738,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -1802,7 +1802,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -1834,7 +1834,7 @@ Politique de Vie Privée libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -2154,7 +2154,7 @@ Comptes libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -2194,7 +2194,7 @@ Données du marché libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -2202,7 +2202,7 @@ Contrôle Admin libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -2210,7 +2210,7 @@ Utilisateurs libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -2218,7 +2218,7 @@ Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -2334,7 +2334,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -2342,7 +2342,7 @@ Fonctionnalités libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -2350,11 +2350,11 @@ Positions libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -2362,7 +2362,7 @@ Résumé libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -2374,15 +2374,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -2390,7 +2390,7 @@ Activités libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -2534,7 +2534,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -2662,7 +2662,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -2794,7 +2794,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -2846,7 +2846,7 @@ Enregistrement libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -2898,7 +2898,7 @@ Ressources libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -2938,11 +2938,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -3518,7 +3518,7 @@ Mettre à niveau l’Abonnement apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3802,7 +3802,7 @@ Renouveler l’Abonnement apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -3950,11 +3950,11 @@ Paramètres libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -4122,7 +4122,7 @@ Historique des modifications libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -4130,7 +4130,7 @@ Licence libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -4265,8 +4265,8 @@ Personal Finance Tools Outils de Gestion de Patrimoine - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -5095,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -5116,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -5129,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -5162,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -5175,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -5188,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -5209,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -5222,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -5235,23 +5235,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -5278,14 +5282,6 @@ 42 - - Open Source Alternative to - Solutions open source alternatives à - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 - - The Open Source Alternative to L’alternative open source à @@ -5324,7 +5320,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 + 294 @@ -5356,7 +5352,7 @@ Suisse apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5368,7 +5364,7 @@ Mondial apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5572,7 +5568,7 @@ Statut libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5580,7 +5576,7 @@ Accès libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5856,7 +5852,7 @@ File d’attente libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5880,7 +5876,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5936,7 +5932,7 @@ Week to date libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5944,7 +5940,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5952,7 +5948,7 @@ Month to date libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5960,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5968,7 +5964,7 @@ Year to date libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6012,7 +6008,7 @@ année libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6020,7 +6016,7 @@ années libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6060,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6072,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6081,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6196,8 +6192,8 @@ Internationalization Internationalisation - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6325,7 +6321,7 @@ Alternative apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6333,7 +6329,7 @@ App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6341,7 +6337,7 @@ Budget apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6349,7 +6345,7 @@ Communauté apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6357,7 +6353,7 @@ Family Office apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6365,7 +6361,7 @@ Investisseur apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6373,7 +6369,7 @@ Open Source apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6381,7 +6377,7 @@ Gestion de Patrimoine apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6389,7 +6385,7 @@ Confidentialité apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6397,7 +6393,7 @@ Logiciels apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6405,7 +6401,7 @@ Outils apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6413,7 +6409,7 @@ Expérience Utilisateur apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6421,7 +6417,7 @@ Patrimoine apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6429,7 +6425,7 @@ Gestion de Patrimoine apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6929,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6941,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6950,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6963,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7428,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7440,7 +7436,7 @@ Conditions d’utilisation libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7564,7 +7560,7 @@ Liste de suivi libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7588,7 +7584,7 @@ Se déconnecter apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7605,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7689,7 +7685,7 @@ Rechercher une position ou une page... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7713,7 +7709,15 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Solutions open source alternatives à + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index caddc0c66..306151654 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -759,7 +759,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -803,7 +803,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -815,7 +815,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -835,7 +835,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -851,11 +851,11 @@ Controllo amministrativo apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -867,11 +867,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -887,15 +887,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -911,11 +911,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -923,7 +923,7 @@ Io apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -931,7 +931,7 @@ Il mio Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -939,7 +939,7 @@ Informazioni su Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -955,7 +955,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -971,7 +971,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -999,15 +999,15 @@ Accedi apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -1015,7 +1015,7 @@ Ops! Token di sicurezza errato. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -1127,7 +1127,7 @@ Accedi apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1383,7 +1383,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -1395,7 +1395,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -1407,7 +1407,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -1419,7 +1419,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -1431,7 +1431,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -1459,7 +1459,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -1599,7 +1599,7 @@ Informativa sulla privacy libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -1799,7 +1799,7 @@ Account libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -1903,7 +1903,7 @@ Controllo amministrativo libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -1911,7 +1911,7 @@ Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -1931,7 +1931,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -1939,7 +1939,7 @@ Funzionalità libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -1955,11 +1955,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -1971,15 +1971,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -1991,7 +1991,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -2075,7 +2075,7 @@ Analisi libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -2139,11 +2139,11 @@ Partecipazioni libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -2303,7 +2303,7 @@ Attività libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -2331,7 +2331,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -2343,11 +2343,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -2379,7 +2379,7 @@ Iscrizione libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -2411,7 +2411,7 @@ Risorse libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -2547,7 +2547,7 @@ Inizia apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -3291,7 +3291,7 @@ Dati del mercato libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3299,7 +3299,7 @@ Utenti libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -3307,7 +3307,7 @@ Summario libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3519,7 +3519,7 @@ Aggiorna il piano apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3803,7 +3803,7 @@ Rinnova il piano apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -3951,11 +3951,11 @@ Impostazioni libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -4123,7 +4123,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -4131,7 +4131,7 @@ Licenza libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -4266,8 +4266,8 @@ Personal Finance Tools Strumenti di finanza personale - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -5096,19 +5096,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -5117,11 +5117,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -5130,31 +5130,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -5163,11 +5163,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -5176,11 +5176,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -5189,19 +5189,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -5210,11 +5210,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -5223,11 +5223,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -5236,23 +5236,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -5279,14 +5283,6 @@ 42 - - Open Source Alternative to - L’alternativa open source a - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 - - The Open Source Alternative to L’alternativa open source a @@ -5325,7 +5321,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 + 294 @@ -5357,7 +5353,7 @@ Svizzera apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5369,7 +5365,7 @@ Globale apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5573,7 +5569,7 @@ Iscrizione libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5581,7 +5577,7 @@ Accesso libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5857,7 +5853,7 @@ Coda Lavori libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5881,7 +5877,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5937,7 +5933,7 @@ Da inizio settimana libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5945,7 +5941,7 @@ Settimana corrente libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5953,7 +5949,7 @@ Da inizio mese libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5961,7 +5957,7 @@ Mese corrente libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5969,7 +5965,7 @@ Da inizio anno libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6013,7 +6009,7 @@ anno libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6021,7 +6017,7 @@ anni libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6061,7 +6057,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6073,7 +6069,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6082,11 +6078,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6197,8 +6193,8 @@ Internationalization Internazionalizzazione - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6326,7 +6322,7 @@ Alternativa apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6334,7 +6330,7 @@ App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6342,7 +6338,7 @@ Budgeting apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6350,7 +6346,7 @@ Comunità apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6358,7 +6354,7 @@ Ufficio familiare apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6366,7 +6362,7 @@ Investitore apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6374,7 +6370,7 @@ Open Source apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6382,7 +6378,7 @@ Finanza Personale apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6390,7 +6386,7 @@ Privacy apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6398,7 +6394,7 @@ Software apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6406,7 +6402,7 @@ Strumento apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6414,7 +6410,7 @@ Esperienza Utente apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6422,7 +6418,7 @@ Ricchezza apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6430,7 +6426,7 @@ Gestione Patrimoniale apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6930,7 +6926,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6942,7 +6938,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6951,11 +6947,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6964,11 +6960,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7429,11 +7425,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7441,7 +7437,7 @@ Termini e condizioni libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7565,7 +7561,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7589,7 +7585,7 @@ Esci apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7606,11 +7602,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7690,7 +7686,7 @@ Trova azienda o pagina... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7714,7 +7710,15 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + L’alternativa open source a + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 291263317..6f8e826c6 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -758,7 +758,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -802,7 +802,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -814,7 +814,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -834,7 +834,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -850,11 +850,11 @@ Beheer apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -866,11 +866,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -886,15 +886,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -910,11 +910,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -922,7 +922,7 @@ Ik apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -930,7 +930,7 @@ Mijn Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -938,7 +938,7 @@ Over Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -954,7 +954,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -970,7 +970,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -998,15 +998,15 @@ Aanmelden apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -1014,7 +1014,7 @@ Oeps! Onjuiste beveiligingstoken. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -1126,7 +1126,7 @@ Aanmelden apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1382,7 +1382,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -1394,7 +1394,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -1406,7 +1406,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -1418,7 +1418,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -1430,7 +1430,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -1458,7 +1458,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -1598,7 +1598,7 @@ Privacybeleid libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -1798,7 +1798,7 @@ Rekeningen libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -1902,7 +1902,7 @@ Beheer libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -1910,7 +1910,7 @@ Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -1930,7 +1930,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -1938,7 +1938,7 @@ Functionaliteiten libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -1954,11 +1954,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -1970,15 +1970,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -1990,7 +1990,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -2074,7 +2074,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -2138,11 +2138,11 @@ Posities libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -2302,7 +2302,7 @@ Activiteiten libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -2330,7 +2330,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -2342,11 +2342,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -2378,7 +2378,7 @@ Registratie libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -2410,7 +2410,7 @@ Bronnen libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -2546,7 +2546,7 @@ Aan de slag apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -3290,7 +3290,7 @@ Marktgegevens libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3298,7 +3298,7 @@ Gebruikers libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -3306,7 +3306,7 @@ Samenvatting libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3518,7 +3518,7 @@ Abonnement uitbreiden apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3802,7 +3802,7 @@ Abonnement Vernieuwen apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -3950,11 +3950,11 @@ Instellingen libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -4122,7 +4122,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -4130,7 +4130,7 @@ Licentie libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -4265,8 +4265,8 @@ Personal Finance Tools Tools voor persoonlijke financiën - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -5095,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -5116,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -5129,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -5162,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -5175,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -5188,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -5209,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -5222,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -5235,23 +5235,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -5278,14 +5282,6 @@ 42 - - Open Source Alternative to - Open Source alternatief voor - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 - - The Open Source Alternative to Open Source alternatief voor @@ -5324,7 +5320,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 + 294 @@ -5356,7 +5352,7 @@ Zwitserland apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5368,7 +5364,7 @@ Wereldwijd apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5572,7 +5568,7 @@ Lidmaatschap libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5580,7 +5576,7 @@ Toegang libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5856,7 +5852,7 @@ Opdracht Wachtrij libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5880,7 +5876,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5936,7 +5932,7 @@ Week tot nu toe libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5944,7 +5940,7 @@ Week tot nu toe libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5952,7 +5948,7 @@ Maand tot nu toe libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5960,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5968,7 +5964,7 @@ Jaar tot nu toe libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6012,7 +6008,7 @@ jaar libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6020,7 +6016,7 @@ jaren libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6060,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6072,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6081,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6196,8 +6192,8 @@ Internationalization Internationalizering - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6325,7 +6321,7 @@ Alternatief apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6333,7 +6329,7 @@ App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6341,7 +6337,7 @@ Budgetteren apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6349,7 +6345,7 @@ Gemeenschap apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6357,7 +6353,7 @@ Familiekantoor apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6365,7 +6361,7 @@ Investeerder apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6373,7 +6369,7 @@ Open Source apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6381,7 +6377,7 @@ Persoonlijke Financiën apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6389,7 +6385,7 @@ Privacy apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6397,7 +6393,7 @@ Software apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6405,7 +6401,7 @@ Hulpmiddel apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6413,7 +6409,7 @@ Gebruikers Ervaring apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6421,7 +6417,7 @@ Vermogen apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6429,7 +6425,7 @@ Vermogensbeheer apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6929,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6941,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6950,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6963,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7428,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7440,7 +7436,7 @@ Servicevoorwaarden libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7564,7 +7560,7 @@ Volglijst libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7588,7 +7584,7 @@ Uitloggen apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7605,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7689,7 +7685,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7713,7 +7709,23 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Open Source Alternative to + + libs/common/src/lib/routes/routes.ts + 295 + + + + Open Source Alternative to + Open Source alternatief voor + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index a33b4cc34..fdb6de04d 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -40,19 +40,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -61,11 +61,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -74,11 +74,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -87,19 +87,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -108,11 +108,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -121,11 +121,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -134,11 +134,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -147,23 +147,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -211,7 +215,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -231,11 +235,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -251,11 +255,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -375,7 +379,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -415,15 +419,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -1675,7 +1679,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1859,11 +1863,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -1891,7 +1895,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -1903,7 +1907,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -1911,11 +1915,11 @@ Nadzór Administratora apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -1923,7 +1927,7 @@ Ja apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -1935,7 +1939,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -1943,7 +1947,7 @@ Moje Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -1951,7 +1955,7 @@ O Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1963,7 +1967,7 @@ Zaloguj się apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1975,7 +1979,7 @@ Rozpocznij apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -1983,15 +1987,15 @@ Zaloguj się apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -1999,7 +2003,7 @@ Ups! Nieprawidłowy token bezpieczeństwa. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -2627,7 +2631,7 @@ Ulepsz Plan apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2651,7 +2655,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -2663,7 +2667,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -2675,7 +2679,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -2687,7 +2691,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -2699,7 +2703,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -3027,7 +3031,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -3035,7 +3039,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -3043,7 +3047,7 @@ Licencja libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -3051,7 +3055,7 @@ Polityka Prywatności libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -3083,7 +3087,7 @@ Konta libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -3147,7 +3151,7 @@ Panel Administratora libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -3155,7 +3159,7 @@ Dane Rynkowe libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3163,11 +3167,11 @@ Ustawienia libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -3175,7 +3179,7 @@ Użytkownicy libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -3191,11 +3195,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -3203,7 +3207,7 @@ Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -3231,7 +3235,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -3255,7 +3259,7 @@ Funkcje libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -3387,11 +3391,11 @@ Inwestycje libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -3399,7 +3403,7 @@ Podsumowanie libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3411,15 +3415,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -3843,7 +3847,7 @@ Aktywności libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -4091,7 +4095,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -4263,7 +4267,7 @@ Analiza libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -4435,7 +4439,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -4603,7 +4607,7 @@ Odnów Plan apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4675,7 +4679,7 @@ Rejestracja libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -4706,8 +4710,8 @@ Personal Finance Tools Narzędzia finansów osobistych - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -4716,15 +4720,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 - - - - Open Source Alternative to - Alternatywa Open Source dla - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 + 294 @@ -4980,7 +4976,7 @@ Szwajcaria apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -4992,7 +4988,7 @@ Globalny apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5004,7 +5000,7 @@ Zasoby libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -5028,7 +5024,7 @@ Członkostwo libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5036,7 +5032,7 @@ Dostęp libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5856,7 +5852,7 @@ Kolejka Zadań libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5880,7 +5876,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5936,7 +5932,7 @@ Dotychczasowy tydzień libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5944,7 +5940,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5952,7 +5948,7 @@ Od początku miesiąca libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5960,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5968,7 +5964,7 @@ Od początku roku libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6012,7 +6008,7 @@ rok libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6020,7 +6016,7 @@ lata libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6060,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6072,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6081,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6196,8 +6192,8 @@ Internationalization Internacjonalizacja - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6325,7 +6321,7 @@ Alternatywa apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6333,7 +6329,7 @@ Aplikacja apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6341,7 +6337,7 @@ Budżetowanie apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6349,7 +6345,7 @@ Społeczność apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6357,7 +6353,7 @@ Biuro Rodzinne apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6365,7 +6361,7 @@ Inwestor apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6373,7 +6369,7 @@ Otwarty Kod Źródłowy apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6381,7 +6377,7 @@ Finanse Osobiste apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6389,7 +6385,7 @@ Prywatność apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6397,7 +6393,7 @@ Oprogramowanie apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6405,7 +6401,7 @@ Narzędzie apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6413,7 +6409,7 @@ Doświadczenie Użytkownika apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6421,7 +6417,7 @@ Majątek apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6429,7 +6425,7 @@ Zarządzanie Majątkiem apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6929,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6941,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6950,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6963,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7428,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7440,7 +7436,7 @@ Warunki świadczenia usług libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7564,7 +7560,7 @@ Lista obserwowanych libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7588,7 +7584,7 @@ Wyloguj się apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7605,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7689,7 +7685,7 @@ Znajdź gospodarstwo lub stronę... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7713,7 +7709,23 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Open Source Alternative to + + libs/common/src/lib/routes/routes.ts + 295 + + + + Open Source Alternative to + Alternatywa Open Source dla + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index ed016957a..05e7bcea5 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -890,7 +890,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -918,7 +918,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -974,11 +974,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -1006,7 +1006,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -1018,7 +1018,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -1026,11 +1026,11 @@ Controlo Administrativo apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -1042,11 +1042,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -1062,15 +1062,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -1086,11 +1086,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -1098,7 +1098,7 @@ Eu apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -1106,7 +1106,7 @@ O meu Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -1114,7 +1114,7 @@ Sobre o Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1130,7 +1130,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -1146,7 +1146,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -1162,7 +1162,7 @@ Iniciar sessão apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1174,7 +1174,7 @@ Começar apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -1182,15 +1182,15 @@ Iniciar sessão apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -1198,7 +1198,7 @@ Oops! Token de Segurança Incorreto. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -1674,7 +1674,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -1686,7 +1686,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -1698,7 +1698,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -1710,7 +1710,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -1722,7 +1722,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -1786,7 +1786,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -1818,7 +1818,7 @@ Política de Privacidade libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -1970,7 +1970,7 @@ Utilizadores libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -2094,7 +2094,7 @@ Contas libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -2134,7 +2134,7 @@ Controlo Administrativo libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -2142,7 +2142,7 @@ Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -2258,7 +2258,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -2266,7 +2266,7 @@ Funcionalidades libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -2282,11 +2282,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -2298,15 +2298,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -2314,7 +2314,7 @@ Atividades libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -2450,7 +2450,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -2578,7 +2578,7 @@ Análise libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -2658,11 +2658,11 @@ Posições libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -2694,7 +2694,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -2746,7 +2746,7 @@ Registo libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -2798,7 +2798,7 @@ Recursos libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -3246,7 +3246,7 @@ Dados de Mercado libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3254,7 +3254,7 @@ Sumário libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3518,7 +3518,7 @@ Atualizar Plano apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3802,7 +3802,7 @@ Renovar Plano apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -3950,11 +3950,11 @@ Definições libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -4122,7 +4122,7 @@ Registo de alterações libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -4130,7 +4130,7 @@ Licença libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -4265,8 +4265,8 @@ Personal Finance Tools Ferramentas de finanças pessoais - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -5095,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -5116,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -5129,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -5162,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -5175,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -5188,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -5209,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -5222,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -5235,23 +5235,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -5278,14 +5282,6 @@ 42 - - Open Source Alternative to - Alternativa de software livre ao - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 - - The Open Source Alternative to A alternativa de software livre ao @@ -5324,7 +5320,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 + 294 @@ -5356,7 +5352,7 @@ Suíça apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5368,7 +5364,7 @@ Global apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5572,7 +5568,7 @@ Associação libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5580,7 +5576,7 @@ Acesso libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5856,7 +5852,7 @@ Fila de trabalhos libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5880,7 +5876,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5936,7 +5932,7 @@ Semana até agora libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5944,7 +5940,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5952,7 +5948,7 @@ Do mês até a data libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5960,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5968,7 +5964,7 @@ No acumulado do ano libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6012,7 +6008,7 @@ ano libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6020,7 +6016,7 @@ anos libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6060,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6072,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6081,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6196,8 +6192,8 @@ Internationalization Internationalization - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6325,7 +6321,7 @@ Alternative apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6333,7 +6329,7 @@ App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6341,7 +6337,7 @@ Budgeting apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6349,7 +6345,7 @@ Community apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6357,7 +6353,7 @@ Family Office apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6365,7 +6361,7 @@ Investor apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6373,7 +6369,7 @@ Open Source apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6381,7 +6377,7 @@ Personal Finance apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6389,7 +6385,7 @@ Privacy apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6397,7 +6393,7 @@ Software apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6405,7 +6401,7 @@ Tool apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6413,7 +6409,7 @@ User Experience apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6421,7 +6417,7 @@ Wealth apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6429,7 +6425,7 @@ Wealth Management apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6929,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6941,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6950,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6963,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7428,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7440,7 +7436,7 @@ Termos de Serviço libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7564,7 +7560,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7588,7 +7584,7 @@ Log out apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7605,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7689,7 +7685,7 @@ Encontrar holding ou página... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7713,7 +7709,23 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Open Source Alternative to + + libs/common/src/lib/routes/routes.ts + 295 + + + + Open Source Alternative to + Alternativa de software livre ao + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 0261723df..614b2d439 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -40,19 +40,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -61,11 +61,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -74,11 +74,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -87,19 +87,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -108,11 +108,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -121,11 +121,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -134,11 +134,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -147,23 +147,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -183,7 +187,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -203,11 +207,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -223,11 +227,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -347,7 +351,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -387,15 +391,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -1579,7 +1583,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1639,7 +1643,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -1719,11 +1723,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -1751,7 +1755,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -1763,7 +1767,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -1771,11 +1775,11 @@ Yönetici Kontrolü apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -1783,7 +1787,7 @@ Ben apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -1791,7 +1795,7 @@ Ghostfolio’m apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -1799,7 +1803,7 @@ Ghostfolio Hakkında apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1811,7 +1815,7 @@ Giriş apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1823,7 +1827,7 @@ Haydi Başlayalım apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -1831,15 +1835,15 @@ Giriş apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -1847,7 +1851,7 @@ Hay Allah! Güvenlik anahtarı yanlış. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -2467,7 +2471,7 @@ Üyeliğinizi Yükseltin apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2491,7 +2495,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -2503,7 +2507,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -2515,7 +2519,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -2527,7 +2531,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -2539,7 +2543,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -2603,7 +2607,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -2611,7 +2615,7 @@ Değişiklik Günlüğü libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -2619,7 +2623,7 @@ Lisans libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -2627,7 +2631,7 @@ Gizlilik Politikası libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -2659,7 +2663,7 @@ Hesaplar libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -2691,7 +2695,7 @@ Yönetici Denetimleri libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -2699,7 +2703,7 @@ Piyasa Verileri libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -2707,11 +2711,11 @@ Ayarlar libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -2719,7 +2723,7 @@ Kullanıcılar libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -2735,11 +2739,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -2747,7 +2751,7 @@ Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -2775,7 +2779,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -2799,7 +2803,7 @@ Özellikler libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -2943,11 +2947,11 @@ Varlıklar libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -2955,7 +2959,7 @@ Özet libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -2967,15 +2971,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -3347,7 +3351,7 @@ İşlemler libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -3579,7 +3583,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -3751,7 +3755,7 @@ Analiz libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -3907,7 +3911,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -4075,7 +4079,7 @@ Aboneliği Yenile apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4147,7 +4151,7 @@ Kayıt libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -4198,8 +4202,8 @@ Personal Finance Tools Kişisel Finans Araçları - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -4208,15 +4212,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 - - - - Open Source Alternative to - için Açık Kaynak Alternatif - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 + 294 @@ -4464,7 +4460,7 @@ İsviçre apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -4476,7 +4472,7 @@ Küresel apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -4488,7 +4484,7 @@ Kaynaklar libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -5572,7 +5568,7 @@ Üyelik libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5580,7 +5576,7 @@ Erişim libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5856,7 +5852,7 @@ İş Kuyruğu libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5880,7 +5876,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5936,7 +5932,7 @@ Hafta içi libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5944,7 +5940,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5952,7 +5948,7 @@ Ay içi libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5960,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5968,7 +5964,7 @@ Yıl içi libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6012,7 +6008,7 @@ Yıl libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6020,7 +6016,7 @@ Yıllar libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6060,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6072,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6081,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6196,8 +6192,8 @@ Internationalization İnternasyonalizasyon - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6325,7 +6321,7 @@ Alternatif apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6333,7 +6329,7 @@ App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6341,7 +6337,7 @@ Bütçeleme apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6349,7 +6345,7 @@ Topluluk apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6357,7 +6353,7 @@ Aile Ofisi apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6365,7 +6361,7 @@ Yatırımcı apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6373,7 +6369,7 @@ Açık Kaynak apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6381,7 +6377,7 @@ Kişisel Finans apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6389,7 +6385,7 @@ Gizlilik apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6397,7 +6393,7 @@ Yazılım apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6405,7 +6401,7 @@ Araç apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6413,7 +6409,7 @@ Kullanıcı Deneyimi apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6421,7 +6417,7 @@ Zenginlik apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6429,7 +6425,7 @@ Zenginlik Yönetimi apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6929,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6941,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6950,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6963,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7428,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7440,7 +7436,7 @@ Hizmet Koşulları libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7564,7 +7560,7 @@ İzleme Listesi libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7588,7 +7584,7 @@ Oturumu kapat apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7605,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7689,7 +7685,7 @@ Holding veya sayfayı bulun... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7713,7 +7709,15 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Open Source Alternative to + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index ee1d6d022..2ff51a798 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -6,15 +6,15 @@ Функції libs/common/src/lib/routes/routes.ts - 229 + 232 Internationalization Інтернаціоналізація - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -22,15 +22,15 @@ Увійти apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -78,7 +78,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -98,11 +98,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -118,11 +118,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -242,7 +242,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -282,15 +282,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -375,31 +375,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -408,11 +408,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -421,11 +421,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -434,19 +434,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -455,11 +455,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -468,19 +468,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -489,11 +489,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -502,11 +502,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -515,23 +515,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -1835,7 +1839,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -2019,7 +2023,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -2147,11 +2151,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -2179,7 +2183,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -2191,7 +2195,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -2199,11 +2203,11 @@ Управління адміністратором apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -2211,7 +2215,7 @@ Оновити план apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2231,7 +2235,7 @@ Поновити план apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -2247,7 +2251,7 @@ Я apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -2255,7 +2259,7 @@ Мій Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -2263,7 +2267,7 @@ Про Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2275,7 +2279,7 @@ Увійти apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2287,7 +2291,7 @@ Почати apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -2295,7 +2299,7 @@ Упс! Неправильний Секретний Токен. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -3047,7 +3051,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -3059,7 +3063,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -3071,7 +3075,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -3083,7 +3087,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -3095,7 +3099,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -3551,7 +3555,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -3559,7 +3563,7 @@ Журнал змін libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -3567,7 +3571,7 @@ Ліцензія libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -3575,7 +3579,7 @@ Політика конфіденційності libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -3607,7 +3611,7 @@ Рахунки libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -3671,7 +3675,7 @@ Управління адміністратором libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -3679,7 +3683,7 @@ Черга завдань libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -3687,7 +3691,7 @@ Ринкові дані libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3695,11 +3699,11 @@ Налаштування libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -3707,7 +3711,7 @@ Користувачі libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -3723,11 +3727,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -3743,7 +3747,7 @@ Блог libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -3771,7 +3775,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -3791,7 +3795,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -3803,7 +3807,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -3812,11 +3816,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -3964,11 +3968,11 @@ Активи libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -3976,7 +3980,7 @@ Зведення libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3988,15 +3992,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -4444,7 +4448,7 @@ Активності libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -4720,7 +4724,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -4908,7 +4912,7 @@ Аналіз libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -4936,7 +4940,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5172,7 +5176,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -5420,7 +5424,7 @@ Реєстрація libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -5456,7 +5460,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -5476,7 +5480,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -5493,11 +5497,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -5506,19 +5510,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 Personal Finance Tools Інструменти особистих фінансів - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -5527,15 +5531,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 - - - - Open Source Alternative to - Альтернатива з відкритим кодом для - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 + 294 @@ -5575,7 +5571,7 @@ Швейцарія apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5587,7 +5583,7 @@ Глобальний apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5599,7 +5595,7 @@ Альтернатива apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -5607,7 +5603,7 @@ Додаток apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -5615,7 +5611,7 @@ Бюджетування apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -5623,7 +5619,7 @@ Спільнота apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -5631,7 +5627,7 @@ Сімейний офіс apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -5639,7 +5635,7 @@ Інвестор apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -5647,7 +5643,7 @@ Відкритий код apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -5655,7 +5651,7 @@ Особисті фінанси apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -5663,7 +5659,7 @@ Конфіденційність apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -5671,7 +5667,7 @@ Програмне забезпечення apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -5679,7 +5675,7 @@ Інструмент apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -5687,7 +5683,7 @@ Користувацький досвід apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -5695,7 +5691,7 @@ Багатство apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -5703,7 +5699,7 @@ Управління багатством apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6087,7 +6083,7 @@ Ресурси libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -6095,7 +6091,7 @@ Членство libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -6103,7 +6099,7 @@ Доступ libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -6247,7 +6243,7 @@ Тиждень до дати libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -6255,7 +6251,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -6263,7 +6259,7 @@ Місяць до дати libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -6271,7 +6267,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -6279,7 +6275,7 @@ Рік до дати libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -6287,7 +6283,7 @@ рік libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6295,7 +6291,7 @@ роки libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -7428,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7440,7 +7436,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7564,7 +7560,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7588,7 +7584,7 @@ Log out apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7605,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7689,7 +7685,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7713,7 +7709,15 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Альтернатива з відкритим кодом для + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 5220958fb..bacd9f8ac 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -39,19 +39,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -59,11 +59,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -71,11 +71,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -83,19 +83,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -103,11 +103,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -115,11 +115,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -127,11 +127,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -139,23 +139,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -199,7 +203,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -218,11 +222,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -237,11 +241,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -358,7 +362,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -395,15 +399,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -1597,7 +1601,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1761,11 +1765,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -1790,7 +1794,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -1801,25 +1805,25 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 Admin Control apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 Me apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -1830,21 +1834,21 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 My Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 About Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1855,7 +1859,7 @@ Sign in apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1866,29 +1870,29 @@ Get started apps/client/src/app/components/header/header.component.html - 427 + 432 Sign in apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 Oops! Incorrect Security Token. apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -2456,7 +2460,7 @@ Upgrade Plan apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2479,7 +2483,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -2490,7 +2494,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -2501,7 +2505,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -2512,7 +2516,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -2523,7 +2527,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -2815,28 +2819,28 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 Changelog libs/common/src/lib/routes/routes.ts - 162 + 165 License libs/common/src/lib/routes/routes.ts - 170 + 173 Privacy Policy libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -2864,7 +2868,7 @@ Accounts libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -2920,32 +2924,32 @@ Admin Control libs/common/src/lib/routes/routes.ts - 58 + 49 Market Data libs/common/src/lib/routes/routes.ts - 45 + 36 Settings libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 Users libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -2960,18 +2964,18 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 Blog libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -2996,7 +3000,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -3018,7 +3022,7 @@ Features libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -3134,18 +3138,18 @@ Holdings libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 Summary libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3156,15 +3160,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -3538,7 +3542,7 @@ Activities libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -3759,7 +3763,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -3913,7 +3917,7 @@ Analysis libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -4066,7 +4070,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -4218,7 +4222,7 @@ Renew Plan apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4282,7 +4286,7 @@ Registration libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -4309,8 +4313,8 @@ Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -4318,14 +4322,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 - - - - Open Source Alternative to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 + 294 @@ -4578,7 +4575,7 @@ Switzerland apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -4589,7 +4586,7 @@ Global apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -4600,7 +4597,7 @@ Resources libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -4621,14 +4618,14 @@ Membership libs/common/src/lib/routes/routes.ts - 27 + 18 Access libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5324,7 +5321,7 @@ Job Queue libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5367,7 +5364,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5395,35 +5392,35 @@ Year to date libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 Week to date libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 Month to date libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 MTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 WTD libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5462,14 +5459,14 @@ year libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 years libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -5484,11 +5481,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -5499,7 +5496,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -5528,7 +5525,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -5625,8 +5622,8 @@ Internationalization - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -5738,14 +5735,14 @@ Wealth apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 Community apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -5787,35 +5784,35 @@ User Experience apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 App apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 Tool apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 Investor apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 Wealth Management apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -5843,28 +5840,28 @@ Alternative apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 Family Office apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 Personal Finance apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 Software apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -5892,7 +5889,7 @@ Budgeting apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -5906,7 +5903,7 @@ Open Source apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -5941,7 +5938,7 @@ Privacy apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6267,7 +6264,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6275,11 +6272,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -6290,7 +6287,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6298,11 +6295,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6698,7 +6695,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -6706,11 +6703,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -6794,7 +6791,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -6826,7 +6823,7 @@ Log out apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -6841,11 +6838,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -6915,7 +6912,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -6936,7 +6933,14 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + + libs/common/src/lib/routes/routes.ts + 295 diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index b93babff1..d2a7f9a1a 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -8,31 +8,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 153 + 156 libs/common/src/lib/routes/routes.ts - 154 + 157 libs/common/src/lib/routes/routes.ts - 159 + 162 libs/common/src/lib/routes/routes.ts - 167 + 170 libs/common/src/lib/routes/routes.ts - 174 + 177 libs/common/src/lib/routes/routes.ts - 180 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 @@ -41,19 +41,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 207 + 210 libs/common/src/lib/routes/routes.ts - 208 + 211 libs/common/src/lib/routes/routes.ts - 212 + 215 libs/common/src/lib/routes/routes.ts - 218 + 221 @@ -62,11 +62,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 227 + 230 libs/common/src/lib/routes/routes.ts - 228 + 231 @@ -75,11 +75,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 165 + 168 libs/common/src/lib/routes/routes.ts - 168 + 171 @@ -88,19 +88,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 232 + 235 libs/common/src/lib/routes/routes.ts - 233 + 236 libs/common/src/lib/routes/routes.ts - 276 + 279 libs/common/src/lib/routes/routes.ts - 279 + 282 @@ -109,11 +109,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 242 + 245 libs/common/src/lib/routes/routes.ts - 243 + 246 @@ -122,11 +122,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 178 + 181 libs/common/src/lib/routes/routes.ts - 181 + 184 @@ -135,11 +135,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 251 + 254 libs/common/src/lib/routes/routes.ts - 252 + 255 @@ -148,23 +148,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 256 + 259 libs/common/src/lib/routes/routes.ts - 257 + 260 libs/common/src/lib/routes/routes.ts - 262 + 265 libs/common/src/lib/routes/routes.ts - 270 + 273 libs/common/src/lib/routes/routes.ts - 278 + 281 + + + libs/common/src/lib/routes/routes.ts + 289 @@ -212,7 +216,7 @@ apps/client/src/app/components/header/header.component.html - 403 + 408 apps/client/src/app/components/home-market/home-market.html @@ -232,11 +236,11 @@ apps/client/src/app/components/header/header.component.html - 86 + 88 apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/pages/resources/overview/resources-overview.component.html @@ -252,11 +256,11 @@ apps/client/src/app/components/header/header.component.html - 121 + 123 apps/client/src/app/components/header/header.component.html - 369 + 374 @@ -376,7 +380,7 @@ apps/client/src/app/components/header/header.component.html - 356 + 361 apps/client/src/app/pages/features/features-page.html @@ -416,15 +420,15 @@ apps/client/src/app/components/header/header.component.html - 103 + 105 apps/client/src/app/components/header/header.component.html - 308 + 313 apps/client/src/app/components/header/header.component.html - 384 + 389 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -1684,7 +1688,7 @@ apps/client/src/app/components/header/header.component.html - 266 + 268 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1868,11 +1872,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 94 + 92 libs/common/src/lib/routes/routes.ts - 128 + 131 @@ -1900,7 +1904,7 @@ apps/client/src/app/components/header/header.component.html - 246 + 248 @@ -1912,7 +1916,7 @@ apps/client/src/app/components/header/header.component.html - 256 + 258 @@ -1920,11 +1924,11 @@ 管理控制 apps/client/src/app/components/header/header.component.html - 72 + 74 apps/client/src/app/components/header/header.component.html - 284 + 289 @@ -1932,7 +1936,7 @@ apps/client/src/app/components/header/header.component.html - 211 + 213 @@ -1944,7 +1948,7 @@ apps/client/src/app/components/header/header.component.html - 229 + 231 @@ -1952,7 +1956,7 @@ 我的 Ghostfolio apps/client/src/app/components/header/header.component.html - 273 + 277 @@ -1960,7 +1964,7 @@ 关于 Ghostfolio apps/client/src/app/components/header/header.component.html - 321 + 326 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1972,7 +1976,7 @@ 登入 apps/client/src/app/components/header/header.component.html - 417 + 422 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1984,7 +1988,7 @@ 开始使用 apps/client/src/app/components/header/header.component.html - 427 + 432 @@ -1992,15 +1996,15 @@ 登入 apps/client/src/app/components/header/header.component.ts - 242 + 237 libs/common/src/lib/routes/routes.ts - 69 + 66 libs/common/src/lib/routes/routes.ts - 134 + 137 @@ -2008,7 +2012,7 @@ 哎呀!安全令牌不正确。 apps/client/src/app/components/header/header.component.ts - 257 + 252 apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -2636,7 +2640,7 @@ 升级计划 apps/client/src/app/components/header/header.component.html - 191 + 193 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2660,7 +2664,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 336 + 338 @@ -2672,7 +2676,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -2684,7 +2688,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -2696,7 +2700,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -2708,7 +2712,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 375 + 391 @@ -3036,7 +3040,7 @@ libs/common/src/lib/routes/routes.ts - 194 + 197 @@ -3044,7 +3048,7 @@ 更新日志 libs/common/src/lib/routes/routes.ts - 162 + 165 @@ -3052,7 +3056,7 @@ 许可证 libs/common/src/lib/routes/routes.ts - 170 + 173 @@ -3060,7 +3064,7 @@ 隐私政策 libs/common/src/lib/routes/routes.ts - 183 + 186 @@ -3092,7 +3096,7 @@ 账户 libs/common/src/lib/routes/routes.ts - 63 + 54 @@ -3156,7 +3160,7 @@ 管理控制 libs/common/src/lib/routes/routes.ts - 58 + 49 @@ -3164,7 +3168,7 @@ 市场数据 libs/common/src/lib/routes/routes.ts - 45 + 36 @@ -3172,11 +3176,11 @@ 设置 libs/common/src/lib/routes/routes.ts - 30 + 21 libs/common/src/lib/routes/routes.ts - 50 + 41 @@ -3184,7 +3188,7 @@ 用户 libs/common/src/lib/routes/routes.ts - 55 + 46 @@ -3200,11 +3204,11 @@ libs/common/src/lib/routes/routes.ts - 96 + 93 libs/common/src/lib/routes/routes.ts - 147 + 150 @@ -3212,7 +3216,7 @@ 博客 libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -3240,7 +3244,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 227 @@ -3264,7 +3268,7 @@ 功能 libs/common/src/lib/routes/routes.ts - 229 + 232 @@ -3396,11 +3400,11 @@ 持仓 libs/common/src/lib/routes/routes.ts - 78 + 75 libs/common/src/lib/routes/routes.ts - 144 + 147 @@ -3408,7 +3412,7 @@ 汇总 libs/common/src/lib/routes/routes.ts - 88 + 85 @@ -3420,15 +3424,15 @@ libs/common/src/lib/routes/routes.ts - 83 + 80 libs/common/src/lib/routes/routes.ts - 234 + 237 libs/common/src/lib/routes/routes.ts - 281 + 284 @@ -3852,7 +3856,7 @@ 活动 libs/common/src/lib/routes/routes.ts - 105 + 108 @@ -4100,7 +4104,7 @@ libs/common/src/lib/routes/routes.ts - 110 + 113 @@ -4272,7 +4276,7 @@ 分析 libs/common/src/lib/routes/routes.ts - 115 + 118 @@ -4444,7 +4448,7 @@ libs/common/src/lib/routes/routes.ts - 244 + 247 @@ -4612,7 +4616,7 @@ 更新计划 apps/client/src/app/components/header/header.component.html - 189 + 191 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4684,7 +4688,7 @@ 注册 libs/common/src/lib/routes/routes.ts - 253 + 256 @@ -4715,8 +4719,8 @@ Personal Finance Tools 个人理财工具 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 15 + libs/common/src/lib/routes/routes.ts + 298 @@ -4725,15 +4729,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 11 - - - - Open Source Alternative to - 的开源替代品 - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 28 + 294 @@ -5013,7 +5009,7 @@ 瑞士 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 59 + 57 libs/ui/src/lib/i18n.ts @@ -5025,7 +5021,7 @@ 全球的 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 60 + 58 libs/ui/src/lib/i18n.ts @@ -5037,7 +5033,7 @@ 资源 libs/common/src/lib/routes/routes.ts - 284 + 301 @@ -5061,7 +5057,7 @@ 会员资格 libs/common/src/lib/routes/routes.ts - 27 + 18 @@ -5069,7 +5065,7 @@ 使用权 libs/common/src/lib/routes/routes.ts - 22 + 13 @@ -5857,7 +5853,7 @@ 作业队列 libs/common/src/lib/routes/routes.ts - 40 + 31 @@ -5905,7 +5901,7 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 88 + 86 @@ -5937,7 +5933,7 @@ 今年迄今为止 libs/ui/src/lib/assistant/assistant.component.ts - 346 + 350 @@ -5945,7 +5941,7 @@ 本周至今 libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -5953,7 +5949,7 @@ 本月至今 libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5961,7 +5957,7 @@ 最大输运量 libs/ui/src/lib/assistant/assistant.component.ts - 342 + 346 @@ -5969,7 +5965,7 @@ 世界贸易组织 libs/ui/src/lib/assistant/assistant.component.ts - 338 + 342 @@ -6013,7 +6009,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 360 @@ -6021,7 +6017,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 372 + 385 @@ -6038,11 +6034,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 216 + 219 libs/common/src/lib/routes/routes.ts - 219 + 222 @@ -6054,7 +6050,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 224 @@ -6086,7 +6082,7 @@ libs/common/src/lib/routes/routes.ts - 213 + 216 @@ -6197,8 +6193,8 @@ Internationalization 国际化 - apps/client/src/app/app-routing.module.ts - 93 + libs/common/src/lib/routes/routes.ts + 99 @@ -6326,7 +6322,7 @@ 另类 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 82 + 80 @@ -6334,7 +6330,7 @@ 应用 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 83 + 81 @@ -6342,7 +6338,7 @@ 预算管理 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 84 + 82 @@ -6350,7 +6346,7 @@ 社区 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 85 + 83 @@ -6358,7 +6354,7 @@ 家族办公室 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 86 + 84 @@ -6366,7 +6362,7 @@ 投资者 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 89 + 87 @@ -6374,7 +6370,7 @@ 开源 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 90 + 88 @@ -6382,7 +6378,7 @@ 个人理财 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 92 + 90 @@ -6390,7 +6386,7 @@ 隐私 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 93 + 91 @@ -6398,7 +6394,7 @@ 软件 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 95 + 93 @@ -6406,7 +6402,7 @@ 工具 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 96 + 94 @@ -6414,7 +6410,7 @@ 用户体验 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 97 + 95 @@ -6422,7 +6418,7 @@ 财富 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 98 + 96 @@ -6430,7 +6426,7 @@ 财富管理 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts - 99 + 97 @@ -6930,7 +6926,7 @@ libs/common/src/lib/routes/routes.ts - 265 + 268 @@ -6942,7 +6938,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 276 @@ -6951,11 +6947,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 268 + 271 libs/common/src/lib/routes/routes.ts - 271 + 274 @@ -6964,11 +6960,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 260 + 263 libs/common/src/lib/routes/routes.ts - 263 + 266 @@ -7429,11 +7425,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 @@ -7441,7 +7437,7 @@ 服务条款 libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -7565,7 +7561,7 @@ 关注列表 libs/common/src/lib/routes/routes.ts - 93 + 90 @@ -7589,7 +7585,7 @@ 登出 apps/client/src/app/components/header/header.component.html - 324 + 329 @@ -7606,11 +7602,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 157 + 160 libs/common/src/lib/routes/routes.ts - 160 + 163 @@ -7690,7 +7686,7 @@ 查找持仓或页面... libs/ui/src/lib/assistant/assistant.component.ts - 152 + 153 @@ -7714,7 +7710,15 @@ Live Demo libs/common/src/lib/routes/routes.ts - 204 + 207 + + + + Open Source Alternative to + Open Source Alternative to + + libs/common/src/lib/routes/routes.ts + 295 From 33ef2722431f585f2c8e5cc927737dd511ef5624 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 22:06:55 +0200 Subject: [PATCH 07/56] Feature/update locales (#4954) * Update locales * Clean up --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- apps/client/src/locales/messages.nl.xlf | 8 -------- apps/client/src/locales/messages.pl.xlf | 8 -------- apps/client/src/locales/messages.pt.xlf | 8 -------- 3 files changed, 24 deletions(-) diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 6f8e826c6..0eb99b16e 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -7712,14 +7712,6 @@ 207 - - Open Source Alternative to - Open Source Alternative to - - libs/common/src/lib/routes/routes.ts - 295 - - Open Source Alternative to Open Source alternatief voor diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index fdb6de04d..b8626c622 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -7712,14 +7712,6 @@ 207 - - Open Source Alternative to - Open Source Alternative to - - libs/common/src/lib/routes/routes.ts - 295 - - Open Source Alternative to Alternatywa Open Source dla diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 05e7bcea5..4d5363171 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -7712,14 +7712,6 @@ 207 - - Open Source Alternative to - Open Source Alternative to - - libs/common/src/lib/routes/routes.ts - 295 - - Open Source Alternative to Alternativa de software livre ao From a56016ee03df7ad5c1378252a4dd146f0509c8d7 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 18 Jun 2025 19:45:11 +0200 Subject: [PATCH 08/56] Bugfix/add missing import of entity logo component (#4960) * Add missing import --- libs/ui/src/lib/entity-logo/entity-logo.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ui/src/lib/entity-logo/entity-logo.component.ts b/libs/ui/src/lib/entity-logo/entity-logo.component.ts index ee41c8da8..7598fb4d5 100644 --- a/libs/ui/src/lib/entity-logo/entity-logo.component.ts +++ b/libs/ui/src/lib/entity-logo/entity-logo.component.ts @@ -1,3 +1,4 @@ +import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, @@ -9,6 +10,7 @@ import { DataSource } from '@prisma/client'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, + imports: [CommonModule], schemas: [CUSTOM_ELEMENTS_SCHEMA], selector: 'gf-entity-logo', styleUrls: ['./entity-logo.component.scss'], From 6f4e0f11cfad5bac515440601f549a482e54c597 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 18 Jun 2025 19:47:47 +0200 Subject: [PATCH 09/56] Feature/extend development guide to start client in other languages (#4881) * Extend start client guide --- DEVELOPMENT.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 51de2ad25..31b0507bb 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -30,7 +30,13 @@ Run `npm run start:server` ### Start Client -Run `npm run start:client` and open https://localhost:4200/en in your browser +#### English (Default) + +Run `npm run start:client` and open https://localhost:4200/en in your browser. + +#### Other Languages + +To start the client in a different language, such as German (`de`), adapt the `start:client` script in the `package.json` file by changing `--configuration=development-en` to `--configuration=development-de`. Then, run `npm run start:client` and open https://localhost:4200/de in your browser. ### Start _Storybook_ From b92eff5b7287f28390208d49de1b7a4e4cfa7344 Mon Sep 17 00:00:00 2001 From: Renegade Solutions Date: Wed, 18 Jun 2025 12:21:46 -0600 Subject: [PATCH 10/56] Feature/switch data provider service to OnModuleInit ensuring (currency) quotes are fetched only once (#4944) * Switch data provider service to OnModuleInit ensuring (currency) quotes are fetched only once * Update changelog --- CHANGELOG.md | 1 + .../services/data-provider/data-provider.service.ts | 10 ++++------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index feac50910..d53c7f00a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Adapted the options of the date range selector in the assistant dynamically based on the user’s first activity +- Switched the data provider service to `OnModuleInit`, ensuring (currency) quotes are fetched only once - Migrated the `@ghostfolio/ui/assistant` component to control flow - Migrated the `@ghostfolio/ui/value` component to control flow - Improved the language localization for Chinese (`zh`) diff --git a/apps/api/src/services/data-provider/data-provider.service.ts b/apps/api/src/services/data-provider/data-provider.service.ts index 348935101..606da5b88 100644 --- a/apps/api/src/services/data-provider/data-provider.service.ts +++ b/apps/api/src/services/data-provider/data-provider.service.ts @@ -29,7 +29,7 @@ import { import { hasRole } from '@ghostfolio/common/permissions'; import type { Granularity, UserWithSettings } from '@ghostfolio/common/types'; -import { Inject, Injectable, Logger } from '@nestjs/common'; +import { Inject, Injectable, Logger, OnModuleInit } from '@nestjs/common'; import { DataSource, MarketData, SymbolProfile } from '@prisma/client'; import { Big } from 'big.js'; import { eachDayOfInterval, format, isBefore, isValid } from 'date-fns'; @@ -37,7 +37,7 @@ import { groupBy, isEmpty, isNumber, uniqWith } from 'lodash'; import ms from 'ms'; @Injectable() -export class DataProviderService { +export class DataProviderService implements OnModuleInit { private dataProviderMapping: { [dataProviderName: string]: string }; public constructor( @@ -48,11 +48,9 @@ export class DataProviderService { private readonly prismaService: PrismaService, private readonly propertyService: PropertyService, private readonly redisCacheService: RedisCacheService - ) { - this.initialize(); - } + ) {} - public async initialize() { + public async onModuleInit() { this.dataProviderMapping = ((await this.propertyService.getByKey(PROPERTY_DATA_SOURCE_MAPPING)) as { [dataProviderName: string]: string; From a31f71d7ee7424add749e2dbf26dde8ab4ef0552 Mon Sep 17 00:00:00 2001 From: Alesky Zakarin <59431392+aleskrin@users.noreply.github.com> Date: Wed, 18 Jun 2025 12:22:20 -0600 Subject: [PATCH 11/56] Feature/improve language localization for ES 20250614 (#4924) * Improve language localization for ES * Update changelog --- CHANGELOG.md | 1 + apps/client/src/locales/messages.es.xlf | 36 ++++++++++++------------- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d53c7f00a..10c54f682 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Migrated the `@ghostfolio/ui/assistant` component to control flow - Migrated the `@ghostfolio/ui/value` component to control flow - Improved the language localization for Chinese (`zh`) +- Improved the language localization for Español (`es`) - Improved the language localization for Portuguese (`pt`) ## 2.171.0 - 2025-06-15 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 28f78c7b4..baefddea5 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -7558,7 +7558,7 @@ Watchlist - Watchlist + Lista de seguimiento libs/common/src/lib/routes/routes.ts 90 @@ -7566,7 +7566,7 @@ Get Early Access - Get Early Access + Obtenga acceso temprano apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html 29 @@ -7574,7 +7574,7 @@ Do you really want to delete this item? - Do you really want to delete this item? + ¿Realmente deseas eliminar este elemento? libs/ui/src/lib/benchmark/benchmark.component.ts 132 @@ -7582,7 +7582,7 @@ Log out - Log out + Finalizar la sesión apps/client/src/app/components/header/header.component.html 329 @@ -7590,7 +7590,7 @@ Calculations are based on delayed market data and may not be displayed in real-time. - Calculations are based on delayed market data and may not be displayed in real-time. + Los cálculos se basan en datos de mercado retrasados ​​y es posible que no se muestren en tiempo real. apps/client/src/app/components/home-market/home-market.html 43 @@ -7598,7 +7598,7 @@ changelog - changelog + registro-decambios kebab-case libs/common/src/lib/routes/routes.ts @@ -7611,7 +7611,7 @@ Demo user account has been synced. - Demo user account has been synced. + La cuenta de usuario de demostración se ha sincronizado. apps/client/src/app/components/admin-overview/admin-overview.component.ts 223 @@ -7619,7 +7619,7 @@ Sync Demo User Account - Sync Demo User Account + Sincronizar cuenta de usuario de demostración apps/client/src/app/components/admin-overview/admin-overview.html 181 @@ -7627,7 +7627,7 @@ Emergency Fund: Set up - Emergency Fund: Set up + Fondo de Emergencia: Establecer apps/client/src/app/pages/i18n/i18n-page.html 14 @@ -7635,7 +7635,7 @@ No emergency fund has been set up - No emergency fund has been set up + No se ha creado ningún fondo de emergencia apps/client/src/app/pages/i18n/i18n-page.html 15 @@ -7643,7 +7643,7 @@ An emergency fund has been set up - An emergency fund has been set up + Se ha creado un fondo de emergencia apps/client/src/app/pages/i18n/i18n-page.html 18 @@ -7651,7 +7651,7 @@ Fee Ratio - Fee Ratio + Relación de tarifas apps/client/src/app/pages/i18n/i18n-page.html 21 @@ -7659,7 +7659,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) - The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) + Las tarifas superan el ${thresholdMax}% de su inversión inicial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html 22 @@ -7667,7 +7667,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) - The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) + Las tarifas no superan el ${thresholdMax}% de su inversión inicial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html 26 @@ -7675,7 +7675,7 @@ Name - Name + Nombre libs/ui/src/lib/benchmark/benchmark.component.html 11 @@ -7683,7 +7683,7 @@ Find holding or page... - Find holding or page... + Buscar explotación o página... libs/ui/src/lib/assistant/assistant.component.ts 153 @@ -7691,7 +7691,7 @@ Quick Links - Quick Links + Enlaces rápidos libs/ui/src/lib/assistant/assistant.html 45 @@ -7699,7 +7699,7 @@ Asset Profiles - Asset Profiles + Perfiles de activos libs/ui/src/lib/assistant/assistant.html 97 From d8626ffab7489a663db86c773381ca008f831316 Mon Sep 17 00:00:00 2001 From: Hash Palak Date: Thu, 19 Jun 2025 00:29:56 +0600 Subject: [PATCH 12/56] Feature/include admin control panel in quick links of assistant (#4955) * Include admin control panel in quick links of assistant * Update changelog --- CHANGELOG.md | 4 ++++ libs/common/src/lib/routes/interfaces/interfaces.ts | 4 +++- libs/common/src/lib/routes/routes.ts | 7 ++++++- libs/ui/src/lib/assistant/assistant.component.ts | 5 +++++ 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10c54f682..17ecf6ca1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Included the admin control panel in the quick links of the assistant + ### Changed - Adapted the options of the date range selector in the assistant dynamically based on the user’s first activity diff --git a/libs/common/src/lib/routes/interfaces/interfaces.ts b/libs/common/src/lib/routes/interfaces/interfaces.ts index 5e9f65b40..5acbb2350 100644 --- a/libs/common/src/lib/routes/interfaces/interfaces.ts +++ b/libs/common/src/lib/routes/interfaces/interfaces.ts @@ -1,5 +1,7 @@ +import { User } from '@ghostfolio/common/interfaces'; + export interface IRoute { - excludeFromAssistant?: boolean; + excludeFromAssistant?: boolean | ((aUser: User) => boolean); path: string; routerLink: string[]; subRoutes?: Record; diff --git a/libs/common/src/lib/routes/routes.ts b/libs/common/src/lib/routes/routes.ts index 20d911d24..ab3e5afd0 100644 --- a/libs/common/src/lib/routes/routes.ts +++ b/libs/common/src/lib/routes/routes.ts @@ -1,3 +1,6 @@ +import { User } from '@ghostfolio/common/interfaces'; +import { hasPermission, permissions } from '@ghostfolio/common/permissions'; + import '@angular/localize/init'; import { IRoute } from './interfaces/interfaces'; @@ -21,7 +24,9 @@ export const internalRoutes: Record = { title: $localize`Settings` }, adminControl: { - excludeFromAssistant: true, + excludeFromAssistant: (aUser: User) => { + return hasPermission(aUser?.permissions, permissions.accessAdminControl); + }, path: 'admin', routerLink: ['/admin'], subRoutes: { diff --git a/libs/ui/src/lib/assistant/assistant.component.ts b/libs/ui/src/lib/assistant/assistant.component.ts index a5a5fdb9f..22c75b91c 100644 --- a/libs/ui/src/lib/assistant/assistant.component.ts +++ b/libs/ui/src/lib/assistant/assistant.component.ts @@ -41,6 +41,7 @@ import { MatSelectModule } from '@angular/material/select'; import { RouterModule } from '@angular/router'; import { Account, AssetClass, DataSource } from '@prisma/client'; import { differenceInYears } from 'date-fns'; +import { isFunction } from 'lodash'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; import { EMPTY, Observable, Subject, merge, of } from 'rxjs'; import { @@ -627,6 +628,10 @@ export class GfAssistantComponent implements OnChanges, OnDestroy, OnInit { const allRoutes = Object.values(internalRoutes) .filter(({ excludeFromAssistant }) => { + if (isFunction(excludeFromAssistant)) { + return excludeFromAssistant(this.user); + } + return !excludeFromAssistant; }) .reduce((acc, route) => { From 46aa2ebc7a2aa92fe86292e7c700ab339a8e83e9 Mon Sep 17 00:00:00 2001 From: Olindo Task Date: Wed, 18 Jun 2025 13:21:38 -0600 Subject: [PATCH 13/56] Feature/improve language localization for PT (#4961) * Improve language localization for PT --- apps/client/src/locales/messages.pt.xlf | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 4d5363171..b587b4319 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -6073,7 +6073,7 @@ self-hosting - self-hosting + auto-hospedagem kebab-case libs/common/src/lib/routes/routes.ts @@ -6086,7 +6086,7 @@ Oops! It looks like you’re making too many requests. Please slow down a bit. - Oops! It looks like you’re making too many requests. Please slow down a bit. + Ops! Parece que você está fazendo muitas solicitações. Por favor, diminua um pouco a velocidade. apps/client/src/app/core/http-response.interceptor.ts 106 @@ -6094,7 +6094,7 @@ My Account - My Account + Minha conta apps/client/src/app/pages/i18n/i18n-page.html 13 @@ -6102,7 +6102,7 @@ Active - Active + Ativo apps/client/src/app/components/home-holdings/home-holdings.component.ts 37 @@ -6110,7 +6110,7 @@ Closed - Closed + Fechado apps/client/src/app/components/home-holdings/home-holdings.component.ts 38 @@ -6118,7 +6118,7 @@ Activity - Activity + Atividade apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html 207 @@ -6126,7 +6126,7 @@ Dividend Yield - Dividend Yield + Rendimento de dividendos apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html 175 @@ -6134,7 +6134,7 @@ Execute Job - Execute Job + Executar trabalho apps/client/src/app/components/admin-jobs/admin-jobs.html 176 @@ -6142,7 +6142,7 @@ Priority - Priority + Prioridade apps/client/src/app/components/admin-jobs/admin-jobs.html 64 @@ -6150,7 +6150,7 @@ This action is not allowed. - This action is not allowed. + Esta ação não é permitida. apps/client/src/app/core/http-response.interceptor.ts 67 @@ -6158,7 +6158,7 @@ Liquidity - Liquidity + Liquidez libs/ui/src/lib/i18n.ts 48 @@ -6174,7 +6174,7 @@ Buy and sell - Buy and sell + Compre e venda libs/ui/src/lib/i18n.ts 8 @@ -6182,7 +6182,7 @@ Delete Activities - Delete Activities + Excluir atividades libs/ui/src/lib/activities-table/activities-table.component.html 67 @@ -6190,7 +6190,7 @@ Internationalization - Internationalization + Internacionalização libs/common/src/lib/routes/routes.ts 99 From 6e3cf1460ec3b9798c0c217a6449e6224fe698d8 Mon Sep 17 00:00:00 2001 From: Finn Fischer Date: Thu, 19 Jun 2025 02:53:43 -0600 Subject: [PATCH 14/56] Feature/improve language localization for PT 20250618 (#4963) * Improve language localization for PT --- apps/client/src/locales/messages.pt.xlf | 42 ++++++++++++------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index b587b4319..c88cdca73 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -6198,7 +6198,7 @@ Do you really want to close your Ghostfolio account? - Do you really want to close your Ghostfolio account? + Você realmente deseja encerrar sua conta Ghostfolio? apps/client/src/app/components/user-account-settings/user-account-settings.component.ts 174 @@ -6206,7 +6206,7 @@ Danger Zone - Danger Zone + Zona de perigo apps/client/src/app/components/user-account-settings/user-account-settings.html 272 @@ -6214,7 +6214,7 @@ Close Account - Close Account + Fechar conta apps/client/src/app/components/user-account-settings/user-account-settings.html 307 @@ -6222,7 +6222,7 @@ By ETF Holding - By ETF Holding + Por ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html 333 @@ -6230,7 +6230,7 @@ Approximation based on the top holdings of each ETF - Approximation based on the top holdings of each ETF + Aproximação baseada nas principais participações de cada ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html 340 @@ -6238,7 +6238,7 @@ Join now or check out the example account - Join now or check out the example account + Cadastre-se agora ou confira a conta de exemplo apps/client/src/app/pages/landing/landing-page.html 434 @@ -6246,7 +6246,7 @@ Oops! There was an error setting up biometric authentication. - Oops! There was an error setting up biometric authentication. + Ops! Ocorreu um erro ao configurar a autenticação biométrica. apps/client/src/app/components/user-account-settings/user-account-settings.component.ts 302 @@ -6254,7 +6254,7 @@ Show more - Show more + Mostrar mais libs/ui/src/lib/top-holdings/top-holdings.component.html 174 @@ -6262,7 +6262,7 @@ Benchmarks - Benchmarks + Referências apps/client/src/app/components/admin-market-data/admin-market-data.component.ts 81 @@ -6270,7 +6270,7 @@ Delete Profiles - Delete Profiles + Excluir perfis apps/client/src/app/components/admin-market-data/admin-market-data.html 243 @@ -6278,7 +6278,7 @@ Do you really want to delete these profiles? - Do you really want to delete these profiles? + Você realmente deseja excluir esses perfis? apps/client/src/app/components/admin-market-data/admin-market-data.service.ts 68 @@ -6286,7 +6286,7 @@ Oops! Could not delete profiles. - Oops! Could not delete profiles. + Ops! Não foi possível excluir perfis. apps/client/src/app/components/admin-market-data/admin-market-data.service.ts 56 @@ -6294,7 +6294,7 @@ Table - Table + o índice apps/client/src/app/components/home-holdings/home-holdings.html 16 @@ -6302,7 +6302,7 @@ Chart - Chart + Gráfico apps/client/src/app/components/home-holdings/home-holdings.html 19 @@ -6310,7 +6310,7 @@ Would you like to refine your personal investment strategy? - Would you like to refine your personal investment strategy? + Você gostaria de refinar seu estratégia de investimento pessoal? apps/client/src/app/pages/public/public-page.html 211 @@ -6318,7 +6318,7 @@ Alternative - Alternative + Alternativo apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts 80 @@ -6326,7 +6326,7 @@ App - App + Aplicativo apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts 81 @@ -6334,7 +6334,7 @@ Budgeting - Budgeting + Orçamento apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts 82 @@ -6342,7 +6342,7 @@ Community - Community + Comunidade apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts 83 @@ -6350,7 +6350,7 @@ Family Office - Family Office + Escritório Familiar apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts 84 @@ -6358,7 +6358,7 @@ Investor - Investor + Investidor apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts 87 From 0b143088a201aed0342e0af4deb15efc01d16edd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Jun 2025 11:00:29 +0200 Subject: [PATCH 15/56] Feature/update locales (#4962) Co-authored-by: github-actions[bot] --- apps/client/src/locales/messages.ca.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.de.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.es.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.fr.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.it.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.nl.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.pl.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.pt.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.tr.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.uk.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.xlf | 196 ++++++++++++------------ apps/client/src/locales/messages.zh.xlf | 196 ++++++++++++------------ 12 files changed, 1176 insertions(+), 1176 deletions(-) diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 2d59d3a6f..a623b4551 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -6,7 +6,7 @@ Característiques libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -14,7 +14,7 @@ Internacionalització libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -26,11 +26,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -375,31 +375,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -408,11 +408,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -421,11 +421,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -434,19 +434,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -455,11 +455,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -468,19 +468,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -489,11 +489,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -502,11 +502,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -515,27 +515,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -2039,7 +2039,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -2899,7 +2899,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -2911,7 +2911,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -2923,7 +2923,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -2935,7 +2935,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -2947,7 +2947,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -3347,7 +3347,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -3355,7 +3355,7 @@ Registre de canvis libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -3363,7 +3363,7 @@ llicència libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -3371,7 +3371,7 @@ Política de privadesa libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -3403,7 +3403,7 @@ Comptes libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -3467,7 +3467,7 @@ Control d’administració libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -3475,7 +3475,7 @@ Cua de treball libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -3483,7 +3483,7 @@ Dades de mercat libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3491,11 +3491,11 @@ Configuració libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -3503,7 +3503,7 @@ Usuaris libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -3519,11 +3519,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -3531,7 +3531,7 @@ Bloc libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -3559,7 +3559,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -3579,7 +3579,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -3591,7 +3591,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -3600,11 +3600,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -3752,11 +3752,11 @@ Explotacions libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -3764,7 +3764,7 @@ Resum libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3776,15 +3776,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -4232,7 +4232,7 @@ Activitats libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -4472,7 +4472,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -4660,7 +4660,7 @@ Anàlisi libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -4876,7 +4876,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -5100,7 +5100,7 @@ Registration libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -5132,7 +5132,7 @@ Personal Finance Tools libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -5141,7 +5141,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5445,7 +5445,7 @@ Resources libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -5469,7 +5469,7 @@ Membership libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5477,7 +5477,7 @@ Access libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5621,7 +5621,7 @@ Week to date libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5629,7 +5629,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5637,7 +5637,7 @@ Month to date libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5645,7 +5645,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5653,7 +5653,7 @@ Year to date libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -5661,7 +5661,7 @@ year libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -5669,7 +5669,7 @@ years libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6925,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6937,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6946,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6959,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7424,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7436,7 +7436,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7560,7 +7560,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7601,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7685,7 +7685,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7709,7 +7709,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7717,7 +7717,7 @@ Open Source Alternative to libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 265c4c0b6..79af63def 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -1018,11 +1018,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -1398,7 +1398,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -1410,7 +1410,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -1422,7 +1422,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -1434,7 +1434,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -1446,7 +1446,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -1474,7 +1474,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -1614,7 +1614,7 @@ Datenschutzbestimmungen libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -1814,7 +1814,7 @@ Konten libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -1918,7 +1918,7 @@ Administration libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -1926,7 +1926,7 @@ Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -1946,7 +1946,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -1954,7 +1954,7 @@ Features libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -1970,11 +1970,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -1986,15 +1986,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -2006,7 +2006,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -2090,7 +2090,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -2154,11 +2154,11 @@ Positionen libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -2318,7 +2318,7 @@ Aktivitäten libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -2346,7 +2346,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -2362,7 +2362,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -2394,7 +2394,7 @@ Registrierung libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -2426,7 +2426,7 @@ Ressourcen libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -3306,7 +3306,7 @@ Marktdaten libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3314,7 +3314,7 @@ Benutzer libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -3322,7 +3322,7 @@ Zusammenfassung libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3974,11 +3974,11 @@ Einstellungen libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -4146,7 +4146,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -4154,7 +4154,7 @@ Lizenz libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -4290,7 +4290,7 @@ Tools für persönliche Finanzen libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -5119,19 +5119,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -5140,11 +5140,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -5153,31 +5153,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -5186,11 +5186,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -5199,11 +5199,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -5212,19 +5212,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -5233,11 +5233,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -5246,11 +5246,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -5259,27 +5259,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -5344,7 +5344,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5592,7 +5592,7 @@ Mitgliedschaft libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5600,7 +5600,7 @@ Zugang libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5876,7 +5876,7 @@ Job Warteschlange libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5956,7 +5956,7 @@ Seit Wochenbeginn libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5964,7 +5964,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5972,7 +5972,7 @@ Seit Monatsbeginn libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5980,7 +5980,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5988,7 +5988,7 @@ Seit Jahresbeginn libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6032,7 +6032,7 @@ Jahr libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6040,7 +6040,7 @@ Jahre libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6080,7 +6080,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6092,7 +6092,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6101,11 +6101,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6217,7 +6217,7 @@ Internationalisierung libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6949,7 +6949,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6961,7 +6961,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6970,11 +6970,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6983,11 +6983,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7448,11 +7448,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7460,7 +7460,7 @@ Allgemeine Geschäftsbedingungen libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7560,7 +7560,7 @@ Beobachtungsliste libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7601,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7685,7 +7685,7 @@ Position oder Seite finden... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7709,7 +7709,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7717,7 +7717,7 @@ Open Source Alternative zu libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index baefddea5..939effa2c 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -1003,11 +1003,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -1383,7 +1383,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -1395,7 +1395,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -1407,7 +1407,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -1419,7 +1419,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -1431,7 +1431,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -1459,7 +1459,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -1599,7 +1599,7 @@ Política de privacidad libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -1799,7 +1799,7 @@ Cuentas libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -1903,7 +1903,7 @@ Control de administrador libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -1911,7 +1911,7 @@ Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -1931,7 +1931,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -1939,7 +1939,7 @@ Funcionalidades libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -1955,11 +1955,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -1971,15 +1971,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -1991,7 +1991,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -2075,7 +2075,7 @@ Análisis libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -2139,11 +2139,11 @@ Participaciones libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -2303,7 +2303,7 @@ Operación libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -2331,7 +2331,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -2347,7 +2347,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -2379,7 +2379,7 @@ Registro libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -2411,7 +2411,7 @@ Recursos libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -3291,7 +3291,7 @@ Datos del mercado libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3299,7 +3299,7 @@ Usuarios libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -3307,7 +3307,7 @@ Resumen libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3951,11 +3951,11 @@ Configuraciones libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -4123,7 +4123,7 @@ Registro de cambios libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -4131,7 +4131,7 @@ Licencia libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -4267,7 +4267,7 @@ Herramientas de finanzas personales libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -5096,19 +5096,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -5117,11 +5117,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -5130,31 +5130,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -5163,11 +5163,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -5176,11 +5176,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -5189,19 +5189,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -5210,11 +5210,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -5223,11 +5223,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -5236,27 +5236,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -5321,7 +5321,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5569,7 +5569,7 @@ Membresía libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5577,7 +5577,7 @@ Acceso libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5853,7 +5853,7 @@ Cola de trabajos libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5933,7 +5933,7 @@ Week to date libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5941,7 +5941,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5949,7 +5949,7 @@ Month to date libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5957,7 +5957,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5965,7 +5965,7 @@ Year to date libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6009,7 +6009,7 @@ año libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6017,7 +6017,7 @@ años libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6057,7 +6057,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6069,7 +6069,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6078,11 +6078,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6194,7 +6194,7 @@ Internacionalización libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6926,7 +6926,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6938,7 +6938,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6947,11 +6947,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6960,11 +6960,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7425,11 +7425,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7437,7 +7437,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7561,7 +7561,7 @@ Lista de seguimiento libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7602,11 +7602,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7686,7 +7686,7 @@ Buscar explotación o página... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7710,7 +7710,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7718,7 +7718,7 @@ Alternativa de software libre a libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 13d50695d..eb6efcde7 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -1106,7 +1106,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -1314,11 +1314,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -1690,7 +1690,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -1702,7 +1702,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -1714,7 +1714,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -1726,7 +1726,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -1738,7 +1738,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -1802,7 +1802,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -1834,7 +1834,7 @@ Politique de Vie Privée libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -2154,7 +2154,7 @@ Comptes libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -2194,7 +2194,7 @@ Données du marché libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -2202,7 +2202,7 @@ Contrôle Admin libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -2210,7 +2210,7 @@ Utilisateurs libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -2218,7 +2218,7 @@ Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -2334,7 +2334,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -2342,7 +2342,7 @@ Fonctionnalités libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -2350,11 +2350,11 @@ Positions libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -2362,7 +2362,7 @@ Résumé libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -2374,15 +2374,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -2390,7 +2390,7 @@ Activités libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -2534,7 +2534,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -2662,7 +2662,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -2794,7 +2794,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -2846,7 +2846,7 @@ Enregistrement libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -2898,7 +2898,7 @@ Ressources libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -2938,11 +2938,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -3950,11 +3950,11 @@ Paramètres libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -4122,7 +4122,7 @@ Historique des modifications libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -4130,7 +4130,7 @@ Licence libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -4266,7 +4266,7 @@ Outils de Gestion de Patrimoine libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -5095,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -5116,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -5129,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -5162,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -5175,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -5188,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -5209,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -5222,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -5235,27 +5235,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -5320,7 +5320,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5568,7 +5568,7 @@ Statut libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5576,7 +5576,7 @@ Accès libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5852,7 +5852,7 @@ File d’attente libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5932,7 +5932,7 @@ Week to date libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5940,7 +5940,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5948,7 +5948,7 @@ Month to date libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5956,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5964,7 +5964,7 @@ Year to date libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6008,7 +6008,7 @@ année libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6016,7 +6016,7 @@ années libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6056,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6068,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6077,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6193,7 +6193,7 @@ Internationalisation libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6925,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6937,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6946,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6959,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7424,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7436,7 +7436,7 @@ Conditions d’utilisation libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7560,7 +7560,7 @@ Liste de suivi libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7601,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7685,7 +7685,7 @@ Rechercher une position ou une page... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7709,7 +7709,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7717,7 +7717,7 @@ Solutions open source alternatives à libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 306151654..9aea22bdd 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -1003,11 +1003,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -1383,7 +1383,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -1395,7 +1395,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -1407,7 +1407,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -1419,7 +1419,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -1431,7 +1431,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -1459,7 +1459,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -1599,7 +1599,7 @@ Informativa sulla privacy libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -1799,7 +1799,7 @@ Account libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -1903,7 +1903,7 @@ Controllo amministrativo libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -1911,7 +1911,7 @@ Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -1931,7 +1931,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -1939,7 +1939,7 @@ Funzionalità libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -1955,11 +1955,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -1971,15 +1971,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -1991,7 +1991,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -2075,7 +2075,7 @@ Analisi libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -2139,11 +2139,11 @@ Partecipazioni libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -2303,7 +2303,7 @@ Attività libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -2331,7 +2331,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -2347,7 +2347,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -2379,7 +2379,7 @@ Iscrizione libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -2411,7 +2411,7 @@ Risorse libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -3291,7 +3291,7 @@ Dati del mercato libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3299,7 +3299,7 @@ Utenti libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -3307,7 +3307,7 @@ Summario libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3951,11 +3951,11 @@ Impostazioni libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -4123,7 +4123,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -4131,7 +4131,7 @@ Licenza libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -4267,7 +4267,7 @@ Strumenti di finanza personale libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -5096,19 +5096,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -5117,11 +5117,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -5130,31 +5130,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -5163,11 +5163,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -5176,11 +5176,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -5189,19 +5189,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -5210,11 +5210,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -5223,11 +5223,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -5236,27 +5236,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -5321,7 +5321,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5569,7 +5569,7 @@ Iscrizione libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5577,7 +5577,7 @@ Accesso libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5853,7 +5853,7 @@ Coda Lavori libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5933,7 +5933,7 @@ Da inizio settimana libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5941,7 +5941,7 @@ Settimana corrente libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5949,7 +5949,7 @@ Da inizio mese libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5957,7 +5957,7 @@ Mese corrente libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5965,7 +5965,7 @@ Da inizio anno libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6009,7 +6009,7 @@ anno libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6017,7 +6017,7 @@ anni libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6057,7 +6057,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6069,7 +6069,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6078,11 +6078,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6194,7 +6194,7 @@ Internazionalizzazione libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6926,7 +6926,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6938,7 +6938,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6947,11 +6947,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6960,11 +6960,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7425,11 +7425,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7437,7 +7437,7 @@ Termini e condizioni libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7561,7 +7561,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7602,11 +7602,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7686,7 +7686,7 @@ Trova azienda o pagina... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7710,7 +7710,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7718,7 +7718,7 @@ L’alternativa open source a libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 0eb99b16e..897df6308 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -1002,11 +1002,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -1382,7 +1382,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -1394,7 +1394,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -1406,7 +1406,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -1418,7 +1418,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -1430,7 +1430,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -1458,7 +1458,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -1598,7 +1598,7 @@ Privacybeleid libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -1798,7 +1798,7 @@ Rekeningen libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -1902,7 +1902,7 @@ Beheer libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -1910,7 +1910,7 @@ Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -1930,7 +1930,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -1938,7 +1938,7 @@ Functionaliteiten libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -1954,11 +1954,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -1970,15 +1970,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -1990,7 +1990,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -2074,7 +2074,7 @@ Analyse libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -2138,11 +2138,11 @@ Posities libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -2302,7 +2302,7 @@ Activiteiten libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -2330,7 +2330,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -2346,7 +2346,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -2378,7 +2378,7 @@ Registratie libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -2410,7 +2410,7 @@ Bronnen libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -3290,7 +3290,7 @@ Marktgegevens libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3298,7 +3298,7 @@ Gebruikers libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -3306,7 +3306,7 @@ Samenvatting libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3950,11 +3950,11 @@ Instellingen libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -4122,7 +4122,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -4130,7 +4130,7 @@ Licentie libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -4266,7 +4266,7 @@ Tools voor persoonlijke financiën libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -5095,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -5116,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -5129,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -5162,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -5175,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -5188,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -5209,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -5222,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -5235,27 +5235,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -5320,7 +5320,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5568,7 +5568,7 @@ Lidmaatschap libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5576,7 +5576,7 @@ Toegang libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5852,7 +5852,7 @@ Opdracht Wachtrij libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5932,7 +5932,7 @@ Week tot nu toe libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5940,7 +5940,7 @@ Week tot nu toe libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5948,7 +5948,7 @@ Maand tot nu toe libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5956,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5964,7 +5964,7 @@ Jaar tot nu toe libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6008,7 +6008,7 @@ jaar libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6016,7 +6016,7 @@ jaren libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6056,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6068,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6077,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6193,7 +6193,7 @@ Internationalizering libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6925,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6937,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6946,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6959,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7424,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7436,7 +7436,7 @@ Servicevoorwaarden libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7560,7 +7560,7 @@ Volglijst libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7601,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7685,7 +7685,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7709,7 +7709,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7717,7 +7717,7 @@ Open Source alternatief voor libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index b8626c622..f55b70d7d 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -40,19 +40,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -61,11 +61,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -74,11 +74,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -87,19 +87,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -108,11 +108,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -121,11 +121,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -134,11 +134,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -147,27 +147,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -1867,7 +1867,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -1991,11 +1991,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -2655,7 +2655,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -2667,7 +2667,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -2679,7 +2679,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -2691,7 +2691,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -2703,7 +2703,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -3031,7 +3031,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -3039,7 +3039,7 @@ Changelog libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -3047,7 +3047,7 @@ Licencja libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -3055,7 +3055,7 @@ Polityka Prywatności libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -3087,7 +3087,7 @@ Konta libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -3151,7 +3151,7 @@ Panel Administratora libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -3159,7 +3159,7 @@ Dane Rynkowe libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3167,11 +3167,11 @@ Ustawienia libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -3179,7 +3179,7 @@ Użytkownicy libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -3195,11 +3195,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -3207,7 +3207,7 @@ Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -3235,7 +3235,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -3259,7 +3259,7 @@ Funkcje libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -3391,11 +3391,11 @@ Inwestycje libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -3403,7 +3403,7 @@ Podsumowanie libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3415,15 +3415,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -3847,7 +3847,7 @@ Aktywności libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -4095,7 +4095,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -4267,7 +4267,7 @@ Analiza libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -4439,7 +4439,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -4679,7 +4679,7 @@ Rejestracja libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -4711,7 +4711,7 @@ Narzędzia finansów osobistych libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -4720,7 +4720,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5000,7 +5000,7 @@ Zasoby libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -5024,7 +5024,7 @@ Członkostwo libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5032,7 +5032,7 @@ Dostęp libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5852,7 +5852,7 @@ Kolejka Zadań libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5932,7 +5932,7 @@ Dotychczasowy tydzień libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5940,7 +5940,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5948,7 +5948,7 @@ Od początku miesiąca libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5956,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5964,7 +5964,7 @@ Od początku roku libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6008,7 +6008,7 @@ rok libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6016,7 +6016,7 @@ lata libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6056,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6068,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6077,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6193,7 +6193,7 @@ Internacjonalizacja libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6925,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6937,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6946,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6959,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7424,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7436,7 +7436,7 @@ Warunki świadczenia usług libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7560,7 +7560,7 @@ Lista obserwowanych libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7601,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7685,7 +7685,7 @@ Znajdź gospodarstwo lub stronę... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7709,7 +7709,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7717,7 +7717,7 @@ Alternatywa Open Source dla libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index c88cdca73..4d9ef076d 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -978,7 +978,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -1186,11 +1186,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -1674,7 +1674,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -1686,7 +1686,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -1698,7 +1698,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -1710,7 +1710,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -1722,7 +1722,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -1786,7 +1786,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -1818,7 +1818,7 @@ Política de Privacidade libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -1970,7 +1970,7 @@ Utilizadores libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -2094,7 +2094,7 @@ Contas libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -2134,7 +2134,7 @@ Controlo Administrativo libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -2142,7 +2142,7 @@ Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -2258,7 +2258,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -2266,7 +2266,7 @@ Funcionalidades libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -2282,11 +2282,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -2298,15 +2298,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -2314,7 +2314,7 @@ Atividades libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -2450,7 +2450,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -2578,7 +2578,7 @@ Análise libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -2658,11 +2658,11 @@ Posições libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -2694,7 +2694,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -2746,7 +2746,7 @@ Registo libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -2798,7 +2798,7 @@ Recursos libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -3246,7 +3246,7 @@ Dados de Mercado libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3254,7 +3254,7 @@ Sumário libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3950,11 +3950,11 @@ Definições libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -4122,7 +4122,7 @@ Registo de alterações libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -4130,7 +4130,7 @@ Licença libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -4266,7 +4266,7 @@ Ferramentas de finanças pessoais libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -5095,19 +5095,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -5116,11 +5116,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -5129,31 +5129,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -5162,11 +5162,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -5175,11 +5175,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -5188,19 +5188,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -5209,11 +5209,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -5222,11 +5222,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -5235,27 +5235,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -5320,7 +5320,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5568,7 +5568,7 @@ Associação libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5576,7 +5576,7 @@ Acesso libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5852,7 +5852,7 @@ Fila de trabalhos libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5932,7 +5932,7 @@ Semana até agora libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5940,7 +5940,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5948,7 +5948,7 @@ Do mês até a data libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5956,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5964,7 +5964,7 @@ No acumulado do ano libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6008,7 +6008,7 @@ ano libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6016,7 +6016,7 @@ anos libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6056,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6068,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6077,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6193,7 +6193,7 @@ Internacionalização libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6925,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6937,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6946,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6959,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7424,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7436,7 +7436,7 @@ Termos de Serviço libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7560,7 +7560,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7601,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7685,7 +7685,7 @@ Encontrar holding ou página... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7709,7 +7709,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7717,7 +7717,7 @@ Alternativa de software livre ao libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 614b2d439..5283dd87a 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -40,19 +40,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -61,11 +61,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -74,11 +74,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -87,19 +87,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -108,11 +108,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -121,11 +121,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -134,11 +134,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -147,27 +147,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -1727,7 +1727,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -1839,11 +1839,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -2495,7 +2495,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -2507,7 +2507,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -2519,7 +2519,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -2531,7 +2531,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -2543,7 +2543,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -2607,7 +2607,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -2615,7 +2615,7 @@ Değişiklik Günlüğü libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -2623,7 +2623,7 @@ Lisans libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -2631,7 +2631,7 @@ Gizlilik Politikası libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -2663,7 +2663,7 @@ Hesaplar libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -2695,7 +2695,7 @@ Yönetici Denetimleri libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -2703,7 +2703,7 @@ Piyasa Verileri libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -2711,11 +2711,11 @@ Ayarlar libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -2723,7 +2723,7 @@ Kullanıcılar libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -2739,11 +2739,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -2751,7 +2751,7 @@ Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -2779,7 +2779,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -2803,7 +2803,7 @@ Özellikler libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -2947,11 +2947,11 @@ Varlıklar libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -2959,7 +2959,7 @@ Özet libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -2971,15 +2971,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -3351,7 +3351,7 @@ İşlemler libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -3583,7 +3583,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -3755,7 +3755,7 @@ Analiz libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -3911,7 +3911,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -4151,7 +4151,7 @@ Kayıt libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -4203,7 +4203,7 @@ Kişisel Finans Araçları libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -4212,7 +4212,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -4484,7 +4484,7 @@ Kaynaklar libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -5568,7 +5568,7 @@ Üyelik libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5576,7 +5576,7 @@ Erişim libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5852,7 +5852,7 @@ İş Kuyruğu libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5932,7 +5932,7 @@ Hafta içi libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5940,7 +5940,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5948,7 +5948,7 @@ Ay içi libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5956,7 +5956,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5964,7 +5964,7 @@ Yıl içi libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6008,7 +6008,7 @@ Yıl libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6016,7 +6016,7 @@ Yıllar libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6056,7 +6056,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6068,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6077,11 +6077,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6193,7 +6193,7 @@ İnternasyonalizasyon libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6925,7 +6925,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6937,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6946,11 +6946,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6959,11 +6959,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7424,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7436,7 +7436,7 @@ Hizmet Koşulları libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7560,7 +7560,7 @@ İzleme Listesi libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7601,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7685,7 +7685,7 @@ Holding veya sayfayı bulun... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7709,7 +7709,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7717,7 +7717,7 @@ Open Source Alternative to libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 2ff51a798..1b88160f4 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -6,7 +6,7 @@ Функції libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -14,7 +14,7 @@ Інтернаціоналізація libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -26,11 +26,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -375,31 +375,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -408,11 +408,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -421,11 +421,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -434,19 +434,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -455,11 +455,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -468,19 +468,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -489,11 +489,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -502,11 +502,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -515,27 +515,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -2155,7 +2155,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -3051,7 +3051,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -3063,7 +3063,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -3075,7 +3075,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -3087,7 +3087,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -3099,7 +3099,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -3555,7 +3555,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -3563,7 +3563,7 @@ Журнал змін libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -3571,7 +3571,7 @@ Ліцензія libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -3579,7 +3579,7 @@ Політика конфіденційності libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -3611,7 +3611,7 @@ Рахунки libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -3675,7 +3675,7 @@ Управління адміністратором libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -3683,7 +3683,7 @@ Черга завдань libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -3691,7 +3691,7 @@ Ринкові дані libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3699,11 +3699,11 @@ Налаштування libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -3711,7 +3711,7 @@ Користувачі libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -3727,11 +3727,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -3747,7 +3747,7 @@ Блог libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -3775,7 +3775,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -3795,7 +3795,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -3807,7 +3807,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -3816,11 +3816,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -3968,11 +3968,11 @@ Активи libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -3980,7 +3980,7 @@ Зведення libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3992,15 +3992,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -4448,7 +4448,7 @@ Активності libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -4724,7 +4724,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -4912,7 +4912,7 @@ Аналіз libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -5176,7 +5176,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -5424,7 +5424,7 @@ Реєстрація libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -5460,7 +5460,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -5480,7 +5480,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -5497,11 +5497,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -5510,11 +5510,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -5522,7 +5522,7 @@ Інструменти особистих фінансів libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -5531,7 +5531,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -6083,7 +6083,7 @@ Ресурси libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -6091,7 +6091,7 @@ Членство libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -6099,7 +6099,7 @@ Доступ libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -6243,7 +6243,7 @@ Тиждень до дати libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -6251,7 +6251,7 @@ WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -6259,7 +6259,7 @@ Місяць до дати libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -6267,7 +6267,7 @@ MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -6275,7 +6275,7 @@ Рік до дати libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -6283,7 +6283,7 @@ рік libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6291,7 +6291,7 @@ роки libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -7424,11 +7424,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7436,7 +7436,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7560,7 +7560,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7601,11 +7601,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7685,7 +7685,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7709,7 +7709,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7717,7 +7717,7 @@ Альтернатива з відкритим кодом для libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index bacd9f8ac..428267d88 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -7,31 +7,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -39,19 +39,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -59,11 +59,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -71,11 +71,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -83,19 +83,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -103,11 +103,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -115,11 +115,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -127,11 +127,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -139,27 +139,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -1769,7 +1769,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -1881,11 +1881,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -2483,7 +2483,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -2494,7 +2494,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -2505,7 +2505,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -2516,7 +2516,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -2527,7 +2527,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -2819,28 +2819,28 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 Changelog libs/common/src/lib/routes/routes.ts - 165 + 170 License libs/common/src/lib/routes/routes.ts - 173 + 178 Privacy Policy libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -2868,7 +2868,7 @@ Accounts libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -2924,32 +2924,32 @@ Admin Control libs/common/src/lib/routes/routes.ts - 49 + 54 Market Data libs/common/src/lib/routes/routes.ts - 36 + 41 Settings libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 Users libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -2964,18 +2964,18 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 Blog libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -3000,7 +3000,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -3022,7 +3022,7 @@ Features libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -3138,18 +3138,18 @@ Holdings libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 Summary libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3160,15 +3160,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -3542,7 +3542,7 @@ Activities libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -3763,7 +3763,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -3917,7 +3917,7 @@ Analysis libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -4070,7 +4070,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -4286,7 +4286,7 @@ Registration libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -4314,7 +4314,7 @@ Personal Finance Tools libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -4322,7 +4322,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -4597,7 +4597,7 @@ Resources libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -4618,14 +4618,14 @@ Membership libs/common/src/lib/routes/routes.ts - 18 + 21 Access libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5321,7 +5321,7 @@ Job Queue libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5392,35 +5392,35 @@ Year to date libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 Week to date libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 Month to date libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 MTD libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 WTD libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5459,14 +5459,14 @@ year libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 years libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -5481,11 +5481,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -5496,7 +5496,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -5525,7 +5525,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -5623,7 +5623,7 @@ Internationalization libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6264,7 +6264,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6272,11 +6272,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -6287,7 +6287,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6295,11 +6295,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6695,7 +6695,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -6703,11 +6703,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -6791,7 +6791,7 @@ Watchlist libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -6838,11 +6838,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -6912,7 +6912,7 @@ Find holding or page... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -6933,14 +6933,14 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 Open Source Alternative to libs/common/src/lib/routes/routes.ts - 295 + 300 diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index d2a7f9a1a..c186682a5 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -8,31 +8,31 @@ kebab-case libs/common/src/lib/routes/routes.ts - 156 + 161 libs/common/src/lib/routes/routes.ts - 157 + 162 libs/common/src/lib/routes/routes.ts - 162 + 167 libs/common/src/lib/routes/routes.ts - 170 + 175 libs/common/src/lib/routes/routes.ts - 177 + 182 libs/common/src/lib/routes/routes.ts - 183 + 188 libs/common/src/lib/routes/routes.ts - 191 + 196 @@ -41,19 +41,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 210 + 215 libs/common/src/lib/routes/routes.ts - 211 + 216 libs/common/src/lib/routes/routes.ts - 215 + 220 libs/common/src/lib/routes/routes.ts - 221 + 226 @@ -62,11 +62,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 230 + 235 libs/common/src/lib/routes/routes.ts - 231 + 236 @@ -75,11 +75,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 168 + 173 libs/common/src/lib/routes/routes.ts - 171 + 176 @@ -88,19 +88,19 @@ kebab-case libs/common/src/lib/routes/routes.ts - 235 + 240 libs/common/src/lib/routes/routes.ts - 236 + 241 libs/common/src/lib/routes/routes.ts - 279 + 284 libs/common/src/lib/routes/routes.ts - 282 + 287 @@ -109,11 +109,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 245 + 250 libs/common/src/lib/routes/routes.ts - 246 + 251 @@ -122,11 +122,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 181 + 186 libs/common/src/lib/routes/routes.ts - 184 + 189 @@ -135,11 +135,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 254 + 259 libs/common/src/lib/routes/routes.ts - 255 + 260 @@ -148,27 +148,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 273 + 278 libs/common/src/lib/routes/routes.ts - 281 + 286 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -1876,7 +1876,7 @@ libs/common/src/lib/routes/routes.ts - 131 + 136 @@ -2000,11 +2000,11 @@ libs/common/src/lib/routes/routes.ts - 66 + 71 libs/common/src/lib/routes/routes.ts - 137 + 142 @@ -2664,7 +2664,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 338 + 339 @@ -2676,7 +2676,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -2688,7 +2688,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -2700,7 +2700,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -2712,7 +2712,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 391 + 392 @@ -3040,7 +3040,7 @@ libs/common/src/lib/routes/routes.ts - 197 + 202 @@ -3048,7 +3048,7 @@ 更新日志 libs/common/src/lib/routes/routes.ts - 165 + 170 @@ -3056,7 +3056,7 @@ 许可证 libs/common/src/lib/routes/routes.ts - 173 + 178 @@ -3064,7 +3064,7 @@ 隐私政策 libs/common/src/lib/routes/routes.ts - 186 + 191 @@ -3096,7 +3096,7 @@ 账户 libs/common/src/lib/routes/routes.ts - 54 + 59 @@ -3160,7 +3160,7 @@ 管理控制 libs/common/src/lib/routes/routes.ts - 49 + 54 @@ -3168,7 +3168,7 @@ 市场数据 libs/common/src/lib/routes/routes.ts - 36 + 41 @@ -3176,11 +3176,11 @@ 设置 libs/common/src/lib/routes/routes.ts - 21 + 24 libs/common/src/lib/routes/routes.ts - 41 + 46 @@ -3188,7 +3188,7 @@ 用户 libs/common/src/lib/routes/routes.ts - 46 + 51 @@ -3204,11 +3204,11 @@ libs/common/src/lib/routes/routes.ts - 93 + 98 libs/common/src/lib/routes/routes.ts - 150 + 155 @@ -3216,7 +3216,7 @@ 博客 libs/common/src/lib/routes/routes.ts - 202 + 207 @@ -3244,7 +3244,7 @@ libs/common/src/lib/routes/routes.ts - 227 + 232 @@ -3268,7 +3268,7 @@ 功能 libs/common/src/lib/routes/routes.ts - 232 + 237 @@ -3400,11 +3400,11 @@ 持仓 libs/common/src/lib/routes/routes.ts - 75 + 80 libs/common/src/lib/routes/routes.ts - 147 + 152 @@ -3412,7 +3412,7 @@ 汇总 libs/common/src/lib/routes/routes.ts - 85 + 90 @@ -3424,15 +3424,15 @@ libs/common/src/lib/routes/routes.ts - 80 + 85 libs/common/src/lib/routes/routes.ts - 237 + 242 libs/common/src/lib/routes/routes.ts - 284 + 289 @@ -3856,7 +3856,7 @@ 活动 libs/common/src/lib/routes/routes.ts - 108 + 113 @@ -4104,7 +4104,7 @@ libs/common/src/lib/routes/routes.ts - 113 + 118 @@ -4276,7 +4276,7 @@ 分析 libs/common/src/lib/routes/routes.ts - 118 + 123 @@ -4448,7 +4448,7 @@ libs/common/src/lib/routes/routes.ts - 247 + 252 @@ -4688,7 +4688,7 @@ 注册 libs/common/src/lib/routes/routes.ts - 256 + 261 @@ -4720,7 +4720,7 @@ 个人理财工具 libs/common/src/lib/routes/routes.ts - 298 + 303 @@ -4729,7 +4729,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5033,7 +5033,7 @@ 资源 libs/common/src/lib/routes/routes.ts - 301 + 306 @@ -5057,7 +5057,7 @@ 会员资格 libs/common/src/lib/routes/routes.ts - 18 + 21 @@ -5065,7 +5065,7 @@ 使用权 libs/common/src/lib/routes/routes.ts - 13 + 16 @@ -5853,7 +5853,7 @@ 作业队列 libs/common/src/lib/routes/routes.ts - 31 + 36 @@ -5933,7 +5933,7 @@ 今年迄今为止 libs/ui/src/lib/assistant/assistant.component.ts - 350 + 351 @@ -5941,7 +5941,7 @@ 本周至今 libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -5949,7 +5949,7 @@ 本月至今 libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5957,7 +5957,7 @@ 最大输运量 libs/ui/src/lib/assistant/assistant.component.ts - 346 + 347 @@ -5965,7 +5965,7 @@ 世界贸易组织 libs/ui/src/lib/assistant/assistant.component.ts - 342 + 343 @@ -6009,7 +6009,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 360 + 361 @@ -6017,7 +6017,7 @@ libs/ui/src/lib/assistant/assistant.component.ts - 385 + 386 @@ -6034,11 +6034,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 219 + 224 libs/common/src/lib/routes/routes.ts - 222 + 227 @@ -6050,7 +6050,7 @@ libs/common/src/lib/routes/routes.ts - 224 + 229 @@ -6082,7 +6082,7 @@ libs/common/src/lib/routes/routes.ts - 216 + 221 @@ -6194,7 +6194,7 @@ 国际化 libs/common/src/lib/routes/routes.ts - 99 + 104 @@ -6926,7 +6926,7 @@ libs/common/src/lib/routes/routes.ts - 268 + 273 @@ -6938,7 +6938,7 @@ libs/common/src/lib/routes/routes.ts - 276 + 281 @@ -6947,11 +6947,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 271 + 276 libs/common/src/lib/routes/routes.ts - 274 + 279 @@ -6960,11 +6960,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 263 + 268 libs/common/src/lib/routes/routes.ts - 266 + 271 @@ -7425,11 +7425,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 189 + 194 libs/common/src/lib/routes/routes.ts - 192 + 197 @@ -7437,7 +7437,7 @@ 服务条款 libs/common/src/lib/routes/routes.ts - 194 + 199 @@ -7561,7 +7561,7 @@ 关注列表 libs/common/src/lib/routes/routes.ts - 90 + 95 @@ -7602,11 +7602,11 @@ kebab-case libs/common/src/lib/routes/routes.ts - 160 + 165 libs/common/src/lib/routes/routes.ts - 163 + 168 @@ -7686,7 +7686,7 @@ 查找持仓或页面... libs/ui/src/lib/assistant/assistant.component.ts - 153 + 154 @@ -7710,7 +7710,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 207 + 212 @@ -7718,7 +7718,7 @@ Open Source Alternative to libs/common/src/lib/routes/routes.ts - 295 + 300 From 7a251ef7499a780a35f4ff8a2bea09eadc8ad4a6 Mon Sep 17 00:00:00 2001 From: Tobias Kugel <78074722+tobikugel@users.noreply.github.com> Date: Thu, 19 Jun 2025 12:30:36 -0300 Subject: [PATCH 16/56] Feature/set up language localization for X-ray rule Account Cluster Risks (Single Account) (#4959) * Set up language localization * Update changelog --- CHANGELOG.md | 1 + .../src/app/portfolio/portfolio.service.ts | 2 ++ apps/api/src/app/user/user.service.ts | 2 ++ .../account-cluster-risk/single-account.ts | 21 +++++++++++++++++-- apps/client/src/app/pages/i18n/i18n-page.html | 7 +++++++ 5 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17ecf6ca1..ffa2265b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Set up the language localization for the static portfolio analysis rule: _Account Cluster Risks_ (Single Account) - Included the admin control panel in the quick links of the assistant ### Changed diff --git a/apps/api/src/app/portfolio/portfolio.service.ts b/apps/api/src/app/portfolio/portfolio.service.ts index a43499e5b..cdfd14f70 100644 --- a/apps/api/src/app/portfolio/portfolio.service.ts +++ b/apps/api/src/app/portfolio/portfolio.service.ts @@ -1261,6 +1261,8 @@ export class PortfolioService { ), new AccountClusterRiskSingleAccount( this.exchangeRateDataService, + this.i18nService, + userSettings.language, accounts ) ], diff --git a/apps/api/src/app/user/user.service.ts b/apps/api/src/app/user/user.service.ts index 7a6f08710..cb40a1005 100644 --- a/apps/api/src/app/user/user.service.ts +++ b/apps/api/src/app/user/user.service.ts @@ -263,6 +263,8 @@ export class UserService { user.Settings.settings ), AccountClusterRiskSingleAccount: new AccountClusterRiskSingleAccount( + undefined, + undefined, undefined, {} ).getSettings(user.Settings.settings), diff --git a/apps/api/src/models/rules/account-cluster-risk/single-account.ts b/apps/api/src/models/rules/account-cluster-risk/single-account.ts index 50f49efab..c35cabd9a 100644 --- a/apps/api/src/models/rules/account-cluster-risk/single-account.ts +++ b/apps/api/src/models/rules/account-cluster-risk/single-account.ts @@ -1,6 +1,7 @@ import { RuleSettings } from '@ghostfolio/api/models/interfaces/rule-settings.interface'; import { Rule } from '@ghostfolio/api/models/rule'; import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service'; +import { I18nService } from '@ghostfolio/api/services/i18n/i18n.service'; import { PortfolioDetails, UserSettings } from '@ghostfolio/common/interfaces'; export class AccountClusterRiskSingleAccount extends Rule { @@ -8,9 +9,12 @@ export class AccountClusterRiskSingleAccount extends Rule { public constructor( protected exchangeRateDataService: ExchangeRateDataService, + private i18nService: I18nService, + languageCode: string, accounts: PortfolioDetails['accounts'] ) { super(exchangeRateDataService, { + languageCode, key: AccountClusterRiskSingleAccount.name }); @@ -22,13 +26,22 @@ export class AccountClusterRiskSingleAccount extends Rule { if (accounts.length === 1) { return { - evaluation: `Your net worth is managed by a single account`, + evaluation: this.i18nService.getTranslation({ + id: 'rule.accountClusterRiskSingleAccount.false', + languageCode: this.getLanguageCode() + }), value: false }; } return { - evaluation: `Your net worth is managed by ${accounts.length} accounts`, + evaluation: this.i18nService.getTranslation({ + id: 'rule.accountClusterRiskSingleAccount.true', + languageCode: this.getLanguageCode(), + placeholders: { + accountsLength: accounts.length + } + }), value: true }; } @@ -38,6 +51,10 @@ export class AccountClusterRiskSingleAccount extends Rule { } public getName() { + return this.i18nService.getTranslation({ + id: 'rule.accountClusterRiskSingleAccount', + languageCode: this.getLanguageCode() + }); return 'Single Account'; } diff --git a/apps/client/src/app/pages/i18n/i18n-page.html b/apps/client/src/app/pages/i18n/i18n-page.html index 565d5b68f..6ba581455 100644 --- a/apps/client/src/app/pages/i18n/i18n-page.html +++ b/apps/client/src/app/pages/i18n/i18n-page.html @@ -11,6 +11,13 @@ performance, portfolio, software, stock, trading, wealth, web3
  • My Account
  • +
  • Single Account
  • +
  • + Your net worth is managed by a single account +
  • +
  • + Your net worth is managed by ${accountsLength} accounts +
  • Emergency Fund: Set up
  • No emergency fund has been set up From f351212600fc6ff8f8cc6fc4411af969317dce10 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 19 Jun 2025 17:52:51 +0200 Subject: [PATCH 17/56] Bugfix/fix routing for user account page (#4965) * Fix routing --- .../user-account/user-account-page-routing.module.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/client/src/app/pages/user-account/user-account-page-routing.module.ts b/apps/client/src/app/pages/user-account/user-account-page-routing.module.ts index 2d40309c1..598381cc2 100644 --- a/apps/client/src/app/pages/user-account/user-account-page-routing.module.ts +++ b/apps/client/src/app/pages/user-account/user-account-page-routing.module.ts @@ -16,17 +16,17 @@ const routes: Routes = [ { path: '', component: UserAccountSettingsComponent, - title: internalRoutes.userAccount.title + title: internalRoutes.account.title }, { - path: internalRoutes.userAccount.subRoutes.membership.path, + path: internalRoutes.account.subRoutes.membership.path, component: UserAccountMembershipComponent, - title: internalRoutes.userAccount.subRoutes.membership.title + title: internalRoutes.account.subRoutes.membership.title }, { - path: internalRoutes.userAccount.subRoutes.access.path, + path: internalRoutes.account.subRoutes.access.path, component: UserAccountAccessComponent, - title: internalRoutes.userAccount.subRoutes.access.title + title: internalRoutes.account.subRoutes.access.title } ], component: UserAccountPageComponent, From d858aa53ec4bdf974e57ab9eac8d8f4603551024 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Jun 2025 17:53:20 +0200 Subject: [PATCH 18/56] Feature/update locales (#4966) * Update locales * Update translation * Update changelog --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- CHANGELOG.md | 1 + apps/client/src/locales/messages.ca.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.de.xlf | 40 ++++++++++++++++++++----- apps/client/src/locales/messages.es.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.fr.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.it.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.nl.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.pl.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.pt.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.tr.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.uk.xlf | 38 ++++++++++++++++++----- apps/client/src/locales/messages.xlf | 35 +++++++++++++++++----- apps/client/src/locales/messages.zh.xlf | 38 ++++++++++++++++++----- 13 files changed, 371 insertions(+), 85 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffa2265b6..517d1c704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Migrated the `@ghostfolio/ui/value` component to control flow - Improved the language localization for Chinese (`zh`) - Improved the language localization for Español (`es`) +- Improved the language localization for German (`de`) - Improved the language localization for Portuguese (`pt`) ## 2.171.0 - 2025-06-15 diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index a623b4551..270f6ad4e 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -3816,7 +3816,7 @@ Programari de gestió patrimonial de codi obert apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7629,7 +7629,7 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7637,7 +7637,7 @@ No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7645,7 +7645,7 @@ An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7653,7 +7653,7 @@ Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7661,7 +7661,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7669,7 +7669,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7720,6 +7720,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 79af63def..1474704c3 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -4835,7 +4835,7 @@ Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - Ghostfolio ist ein Open Source Dashboard für deine persönlichen Finanzen mit Fokus auf Datenschutz. Analysiere deine Vermögensverteilung, ermittle dein Nettovermögen und treffe fundierte, datengestützte Investitionsentscheidungen. + Ghostfolio ist ein Open Source Dashboard für deine persönlichen Finanzen mit Fokus auf Datenschutz. Analysiere deine Vermögensverteilung, ermittle dein Gesamtvermögen und treffe fundierte, datengestützte Investitionsentscheidungen. apps/client/src/app/pages/landing/landing-page.html 9 @@ -5684,7 +5684,7 @@ Open Source Software für die Vermögensverwaltung apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7629,7 +7629,7 @@ Notfallfonds: Einrichtung apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7637,7 +7637,7 @@ Es wurde kein Notfallfonds eingerichtet apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7645,7 +7645,7 @@ Ein Notfallfonds wurde eingerichtet apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7653,7 +7653,7 @@ Gebührenverhältnis apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7661,7 +7661,7 @@ Die Gebühren übersteigen ${thresholdMax}% deiner ursprünglichen Investition (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7669,7 +7669,7 @@ Die Gebühren übersteigen ${thresholdMax}% deiner ursprünglichen Investition (${feeRatio}%) nicht apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7720,6 +7720,30 @@ 300 + + Single Account + Einzelkonto + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Dein Gesamtvermögen wird von einem einzigen Konto verwaltet + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Dein Gesamtvermögen wird von ${accountsLength} Konten verwaltet + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 939effa2c..e8c6fc621 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -5661,7 +5661,7 @@ Software de gestión de patrimonio de código abierto apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7630,7 +7630,7 @@ Fondo de Emergencia: Establecer apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7638,7 +7638,7 @@ No se ha creado ningún fondo de emergencia apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7646,7 +7646,7 @@ Se ha creado un fondo de emergencia apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7654,7 +7654,7 @@ Relación de tarifas apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7662,7 +7662,7 @@ Las tarifas superan el ${thresholdMax}% de su inversión inicial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7670,7 +7670,7 @@ Las tarifas no superan el ${thresholdMax}% de su inversión inicial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7721,6 +7721,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index eb6efcde7..7b559945d 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -5660,7 +5660,7 @@ Logiciel libre de Gestion de Patrimoine apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7629,7 +7629,7 @@ Fonds d’urgence : Mise en place apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7637,7 +7637,7 @@ Aucun fonds d’urgence n’a été mis en place apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7645,7 +7645,7 @@ Un fonds d’urgence a été mis en place apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7653,7 +7653,7 @@ Ratio de frais apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7661,7 +7661,7 @@ Les frais dépassent ${thresholdMax}% de votre investissement initial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7669,7 +7669,7 @@ Les frais ne dépassent pas ${thresholdMax}% de votre investissement initial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7720,6 +7720,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 9aea22bdd..cbc41f9c7 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -5661,7 +5661,7 @@ Software Open Source per la gestione della tua ricchezza apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7630,7 +7630,7 @@ Fondo di emergenza: istituito apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7638,7 +7638,7 @@ Non è stato istituito alcun fondo di emergenza apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7646,7 +7646,7 @@ È stato istituito un fondo di emergenza apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7654,7 +7654,7 @@ Rapporto tariffario apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7662,7 +7662,7 @@ Le commissioni superano il ${thresholdMax}% del tuo investimento iniziale (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7670,7 +7670,7 @@ Le commissioni non superano il ${thresholdMax}% del tuo investimento iniziale (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7721,6 +7721,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 897df6308..cc2741271 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -5660,7 +5660,7 @@ Open Source Vermogensbeheer Software apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7629,7 +7629,7 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7637,7 +7637,7 @@ No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7645,7 +7645,7 @@ An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7653,7 +7653,7 @@ Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7661,7 +7661,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7669,7 +7669,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7720,6 +7720,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index f55b70d7d..3eb392710 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -3447,7 +3447,7 @@ Oprogramowanie Open Source do Zarządzania Majątkiem apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7629,7 +7629,7 @@ Fundusz awaryjny: Utworzenie apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7637,7 +7637,7 @@ Nie utworzono funduszu awaryjnego apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7645,7 +7645,7 @@ Utworzono fundusz awaryjny apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7653,7 +7653,7 @@ Stosunek opłat apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7661,7 +7661,7 @@ Opłaty przekraczają ${thresholdMax}% początkowej inwestycji (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7669,7 +7669,7 @@ Opłaty nie przekraczają ${thresholdMax}% początkowej inwestycji (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7720,6 +7720,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 4d9ef076d..d7c30fccb 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -5660,7 +5660,7 @@ Software de gerenciamento de patrimônio de código aberto apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7629,7 +7629,7 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7637,7 +7637,7 @@ No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7645,7 +7645,7 @@ An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7653,7 +7653,7 @@ Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7661,7 +7661,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7669,7 +7669,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7720,6 +7720,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 5283dd87a..f6ed7f3c0 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -5660,7 +5660,7 @@ Açık Kaynak Varlık Yönetim Yazılımı apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7629,7 +7629,7 @@ Acil Durum Fonu: Kurulum apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7637,7 +7637,7 @@ Acil durum fonu oluşturulmadı apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7645,7 +7645,7 @@ Acil durum fonu kuruldu apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7653,7 +7653,7 @@ Ücret Oranı apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7661,7 +7661,7 @@ Ücretler, ilk yatırımınızın %${thresholdMax} kadarını aşıyor (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7669,7 +7669,7 @@ Ücretler, ilk yatırımınızın %${thresholdMax}’ını (${feeRatio}%) aşmaz apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7720,6 +7720,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 1b88160f4..34fc7b8d9 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -4032,7 +4032,7 @@ Програмне забезпечення управління багатством з відкритим кодом apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7629,7 +7629,7 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7637,7 +7637,7 @@ No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7645,7 +7645,7 @@ An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7653,7 +7653,7 @@ Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7661,7 +7661,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7669,7 +7669,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7720,6 +7720,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 428267d88..7be2c3029 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -3189,7 +3189,7 @@ Open Source Wealth Management Software apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -6870,42 +6870,42 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -6943,6 +6943,27 @@ 300 + + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index c186682a5..67011adf9 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -3456,7 +3456,7 @@ 开源财富管理软件 apps/client/src/app/pages/i18n/i18n-page.html - 30 + 37 @@ -7630,7 +7630,7 @@ 应急资金:设置 apps/client/src/app/pages/i18n/i18n-page.html - 14 + 21 @@ -7638,7 +7638,7 @@ 未设置应急资金 apps/client/src/app/pages/i18n/i18n-page.html - 15 + 22 @@ -7646,7 +7646,7 @@ 已设置应急资金 apps/client/src/app/pages/i18n/i18n-page.html - 18 + 25 @@ -7654,7 +7654,7 @@ 费率 apps/client/src/app/pages/i18n/i18n-page.html - 21 + 28 @@ -7662,7 +7662,7 @@ 费用超过了您初始投资的 ${thresholdMax}% (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 22 + 29 @@ -7670,7 +7670,7 @@ 费用未超过您初始投资的 ${thresholdMax}% (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 26 + 33 @@ -7721,6 +7721,30 @@ 300 + + Single Account + Single Account + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Your net worth is managed by a single account + Your net worth is managed by a single account + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + Your net worth is managed by ${accountsLength} accounts + Your net worth is managed by ${accountsLength} accounts + + apps/client/src/app/pages/i18n/i18n-page.html + 18 + + From f5418326663a7e078014193d2c33ba8e0ac5e73b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:51:51 +0200 Subject: [PATCH 19/56] Feature/update locales (#4968) Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> From 3aae0aa40c0005c5d9853fbcc5a8b794b45ebf10 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:52:29 +0200 Subject: [PATCH 20/56] Bugfix/fix migration to form control in value component (#4969) * Fix migration to form control --- libs/ui/src/lib/value/value.component.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/ui/src/lib/value/value.component.html b/libs/ui/src/lib/value/value.component.html index 62b60c1f8..eec99f4be 100644 --- a/libs/ui/src/lib/value/value.component.html +++ b/libs/ui/src/lib/value/value.component.html @@ -94,7 +94,8 @@ {{ subLabel }} } - + } @else { + } From 26cb9ca11a0fc38e69a1c93353786dcee6b740c7 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 19 Jun 2025 22:28:19 +0200 Subject: [PATCH 21/56] Release 2.172.0 (#4970) --- CHANGELOG.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 517d1c704..effee7e42 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). -## Unreleased +## 2.172.0 - 2025-06-19 ### Added diff --git a/package-lock.json b/package-lock.json index 0db8503e5..3e1d4c69c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ghostfolio", - "version": "2.171.0", + "version": "2.172.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ghostfolio", - "version": "2.171.0", + "version": "2.172.0", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/package.json b/package.json index 8930fbd53..c2d942b75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.171.0", + "version": "2.172.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio", From 28d9bb81be6d59afcb42247507e0750cef34fe10 Mon Sep 17 00:00:00 2001 From: jlebutte Date: Fri, 20 Jun 2025 17:22:33 +0200 Subject: [PATCH 22/56] Feature/improve language localization for FR 20250620 (#4972) * Improve language localization for FR * Update changelog --- CHANGELOG.md | 6 ++++++ apps/client/src/locales/messages.fr.xlf | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index effee7e42..d61b9d4c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## Unreleased + +### Changed + +- Improved the language localization for French (`fr`) + ## 2.172.0 - 2025-06-19 ### Added diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 7b559945d..3ec7859e3 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -455,7 +455,7 @@ Asset Profiles - Profil d’Actifs + Profils d’Actifs apps/client/src/app/components/admin-settings/admin-settings.component.html 52 @@ -7698,7 +7698,7 @@ Asset Profiles - Asset Profiles + Profils d’Actifs libs/ui/src/lib/assistant/assistant.html 97 @@ -7706,7 +7706,7 @@ Live Demo - Live Demo + Démo Live libs/common/src/lib/routes/routes.ts 212 @@ -7722,7 +7722,7 @@ Single Account - Single Account + Compte Unique apps/client/src/app/pages/i18n/i18n-page.html 14 @@ -7730,7 +7730,7 @@ Your net worth is managed by a single account - Your net worth is managed by a single account + Votre patrimoine est géré par un compte unique apps/client/src/app/pages/i18n/i18n-page.html 15 @@ -7738,7 +7738,7 @@ Your net worth is managed by ${accountsLength} accounts - Your net worth is managed by ${accountsLength} accounts + Votre patrimoine est géré par ${accountsLength} comptes apps/client/src/app/pages/i18n/i18n-page.html 18 From 463dc3b29582275dfbf0d797f0cbd74014cf2dcd Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 20 Jun 2025 19:40:17 +0200 Subject: [PATCH 23/56] Feature/upgrade class-validator to version 0.14.2 (#4950) * Upgrade class-validator to version 0.14.2 * Update changelog --- CHANGELOG.md | 1 + package-lock.json | 10 +++++----- package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d61b9d4c0..93ec69abd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Improved the language localization for French (`fr`) +- Upgraded `class-validator` from version `0.14.1` to `0.14.2` ## 2.172.0 - 2025-06-19 diff --git a/package-lock.json b/package-lock.json index 3e1d4c69c..6c93d232d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -57,7 +57,7 @@ "chartjs-plugin-datalabels": "2.2.0", "cheerio": "1.0.0", "class-transformer": "0.5.1", - "class-validator": "0.14.1", + "class-validator": "0.14.2", "color": "5.0.0", "countries-and-timezones": "3.7.2", "countries-list": "3.1.1", @@ -15602,13 +15602,13 @@ "license": "MIT" }, "node_modules/class-validator": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.14.1.tgz", - "integrity": "sha512-2VEG9JICxIqTpoK1eMzZqaV+u/EiwEJkMGzTrZf6sU/fwsnOITVgYJ8yojSy6CaXtO9V0Cc6ZQZ8h8m4UBuLwQ==", + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.14.2.tgz", + "integrity": "sha512-3kMVRF2io8N8pY1IFIXlho9r8IPUUIfHe2hYVtiebvAzU2XeQFXTv+XI4WX+TnXmtwXMDcjngcpkiPM0O9PvLw==", "license": "MIT", "dependencies": { "@types/validator": "^13.11.8", - "libphonenumber-js": "^1.10.53", + "libphonenumber-js": "^1.11.1", "validator": "^13.9.0" } }, diff --git a/package.json b/package.json index c2d942b75..3503702df 100644 --- a/package.json +++ b/package.json @@ -103,7 +103,7 @@ "chartjs-plugin-datalabels": "2.2.0", "cheerio": "1.0.0", "class-transformer": "0.5.1", - "class-validator": "0.14.1", + "class-validator": "0.14.2", "color": "5.0.0", "countries-and-timezones": "3.7.2", "countries-list": "3.1.1", From 14b213c57192ade881a75d216102912f90f73561 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Sat, 21 Jun 2025 14:27:28 +0700 Subject: [PATCH 24/56] Bugfix/fix variable resolution in HtmlTemplateMiddleware (#4975) * Fix variable resolution in HtmlTemplateMiddleware * Update changelog --- CHANGELOG.md | 4 ++++ apps/api/src/main.ts | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ec69abd..1999c836e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved the language localization for French (`fr`) - Upgraded `class-validator` from version `0.14.1` to `0.14.2` +### Fixed + +- Fixed an issue in the `HtmlTemplateMiddleware` related to incorrect variable resolution + ## 2.172.0 - 2025-06-19 ### Added diff --git a/apps/api/src/main.ts b/apps/api/src/main.ts index bf14ebb90..41f156cbf 100644 --- a/apps/api/src/main.ts +++ b/apps/api/src/main.ts @@ -48,7 +48,8 @@ async function bootstrap() { exclude: [ 'sitemap.xml', ...SUPPORTED_LANGUAGE_CODES.map((languageCode) => { - return `/${languageCode}/*wildcard`; + // Exclude language-specific routes with an optional wildcard + return `/${languageCode}{/*wildcard}`; }) ] }); From d5d74eb4db881e0dc9e6d7aa885996e42255ed9d Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 09:42:41 +0200 Subject: [PATCH 25/56] Feature/rename GranteeUser to granteeUser in Access database schema (#4979) * Rename GranteeUser to granteeUser in Access database schema * Update changelog --- CHANGELOG.md | 1 + apps/api/src/app/access/access.controller.ts | 10 +++++----- apps/api/src/app/access/access.service.ts | 2 +- apps/api/src/app/user/user.service.ts | 2 +- .../services/impersonation/impersonation.service.ts | 4 ++-- .../src/lib/types/access-with-grantee-user.type.ts | 2 +- prisma/schema.prisma | 2 +- 7 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1999c836e..3d77ae783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Renamed `GranteeUser` to `granteeUser` in the `Access` database schema - Improved the language localization for French (`fr`) - Upgraded `class-validator` from version `0.14.1` to `0.14.2` diff --git a/apps/api/src/app/access/access.controller.ts b/apps/api/src/app/access/access.controller.ts index 9913a5c1b..bc2d22e51 100644 --- a/apps/api/src/app/access/access.controller.ts +++ b/apps/api/src/app/access/access.controller.ts @@ -37,20 +37,20 @@ export class AccessController { public async getAllAccesses(): Promise { const accessesWithGranteeUser = await this.accessService.accesses({ include: { - GranteeUser: true + granteeUser: true }, orderBy: { granteeUserId: 'asc' }, where: { userId: this.request.user.id } }); return accessesWithGranteeUser.map( - ({ alias, GranteeUser, id, permissions }) => { - if (GranteeUser) { + ({ alias, granteeUser, id, permissions }) => { + if (granteeUser) { return { alias, id, permissions, - grantee: GranteeUser?.id, + grantee: granteeUser?.id, type: 'PRIVATE' }; } @@ -85,7 +85,7 @@ export class AccessController { try { return this.accessService.createAccess({ alias: data.alias || undefined, - GranteeUser: data.granteeUserId + granteeUser: data.granteeUserId ? { connect: { id: data.granteeUserId } } : undefined, permissions: data.permissions, diff --git a/apps/api/src/app/access/access.service.ts b/apps/api/src/app/access/access.service.ts index ccba595e3..8403cdc09 100644 --- a/apps/api/src/app/access/access.service.ts +++ b/apps/api/src/app/access/access.service.ts @@ -13,7 +13,7 @@ export class AccessService { ): Promise { return this.prismaService.access.findFirst({ include: { - GranteeUser: true + granteeUser: true }, where: accessWhereInput }); diff --git a/apps/api/src/app/user/user.service.ts b/apps/api/src/app/user/user.service.ts index cb40a1005..b95801b41 100644 --- a/apps/api/src/app/user/user.service.ts +++ b/apps/api/src/app/user/user.service.ts @@ -104,7 +104,7 @@ export class UserService { user: true }, orderBy: { alias: 'asc' }, - where: { GranteeUser: { id } } + where: { granteeUserId: id } }), this.prismaService.order.count({ where: { userId: id } diff --git a/apps/api/src/services/impersonation/impersonation.service.ts b/apps/api/src/services/impersonation/impersonation.service.ts index 4bf23576a..71c543a43 100644 --- a/apps/api/src/services/impersonation/impersonation.service.ts +++ b/apps/api/src/services/impersonation/impersonation.service.ts @@ -16,7 +16,7 @@ export class ImpersonationService { if (this.request.user) { const accessObject = await this.prismaService.access.findFirst({ where: { - GranteeUser: { id: this.request.user.id }, + granteeUserId: this.request.user.id, id: aId } }); @@ -35,7 +35,7 @@ export class ImpersonationService { // Public access const accessObject = await this.prismaService.access.findFirst({ where: { - GranteeUser: null, + granteeUserId: null, user: { id: aId } } }); diff --git a/libs/common/src/lib/types/access-with-grantee-user.type.ts b/libs/common/src/lib/types/access-with-grantee-user.type.ts index 18c045fc7..98551e0fd 100644 --- a/libs/common/src/lib/types/access-with-grantee-user.type.ts +++ b/libs/common/src/lib/types/access-with-grantee-user.type.ts @@ -1,3 +1,3 @@ import { Access, User } from '@prisma/client'; -export type AccessWithGranteeUser = Access & { GranteeUser?: User }; +export type AccessWithGranteeUser = Access & { granteeUser?: User }; diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 2c9f0e4bf..5f95c1e84 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -12,12 +12,12 @@ datasource db { model Access { alias String? createdAt DateTime @default(now()) + granteeUser User? @relation("accessGet", fields: [granteeUserId], onDelete: Cascade, references: [id]) granteeUserId String? id String @id @default(uuid()) permissions AccessPermission[] @default([READ_RESTRICTED]) updatedAt DateTime @updatedAt userId String - GranteeUser User? @relation("accessGet", fields: [granteeUserId], onDelete: Cascade, references: [id]) user User @relation("accessGive", fields: [userId], onDelete: Cascade, references: [id]) @@index([alias]) From 029504d843d9fd816424a5b8af32aec592c1cdc2 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 11:56:35 +0200 Subject: [PATCH 26/56] Feature/refactor sitemap module (#4983) * Refactor sitemap module --- apps/api/src/app/app.module.ts | 2 +- .../endpoints/sitemap/sitemap.controller.ts | 49 ++++++++++++ .../{ => endpoints}/sitemap/sitemap.module.ts | 4 +- .../app/endpoints/sitemap/sitemap.service.ts | 43 ++++++++++ .../api/src/app/sitemap/sitemap.controller.ts | 80 ------------------- 5 files changed, 96 insertions(+), 82 deletions(-) create mode 100644 apps/api/src/app/endpoints/sitemap/sitemap.controller.ts rename apps/api/src/app/{ => endpoints}/sitemap/sitemap.module.ts (70%) create mode 100644 apps/api/src/app/endpoints/sitemap/sitemap.service.ts delete mode 100644 apps/api/src/app/sitemap/sitemap.controller.ts diff --git a/apps/api/src/app/app.module.ts b/apps/api/src/app/app.module.ts index 8f342eb43..7e9704183 100644 --- a/apps/api/src/app/app.module.ts +++ b/apps/api/src/app/app.module.ts @@ -38,6 +38,7 @@ import { BenchmarksModule } from './endpoints/benchmarks/benchmarks.module'; import { GhostfolioModule } from './endpoints/data-providers/ghostfolio/ghostfolio.module'; import { MarketDataModule } from './endpoints/market-data/market-data.module'; import { PublicModule } from './endpoints/public/public.module'; +import { SitemapModule } from './endpoints/sitemap/sitemap.module'; import { TagsModule } from './endpoints/tags/tags.module'; import { WatchlistModule } from './endpoints/watchlist/watchlist.module'; import { ExchangeRateModule } from './exchange-rate/exchange-rate.module'; @@ -50,7 +51,6 @@ import { OrderModule } from './order/order.module'; import { PlatformModule } from './platform/platform.module'; import { PortfolioModule } from './portfolio/portfolio.module'; import { RedisCacheModule } from './redis-cache/redis-cache.module'; -import { SitemapModule } from './sitemap/sitemap.module'; import { SubscriptionModule } from './subscription/subscription.module'; import { SymbolModule } from './symbol/symbol.module'; import { UserModule } from './user/user.module'; diff --git a/apps/api/src/app/endpoints/sitemap/sitemap.controller.ts b/apps/api/src/app/endpoints/sitemap/sitemap.controller.ts new file mode 100644 index 000000000..4d6dfb5ea --- /dev/null +++ b/apps/api/src/app/endpoints/sitemap/sitemap.controller.ts @@ -0,0 +1,49 @@ +import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service'; +import { + DATE_FORMAT, + getYesterday, + interpolate +} from '@ghostfolio/common/helper'; + +import { Controller, Get, Res, VERSION_NEUTRAL, Version } from '@nestjs/common'; +import { format } from 'date-fns'; +import { Response } from 'express'; +import { readFileSync } from 'fs'; +import { join } from 'path'; + +import { SitemapService } from './sitemap.service'; + +@Controller('sitemap.xml') +export class SitemapController { + public sitemapXml = ''; + + public constructor( + private readonly configurationService: ConfigurationService, + private readonly sitemapService: SitemapService + ) { + try { + this.sitemapXml = readFileSync( + join(__dirname, 'assets', 'sitemap.xml'), + 'utf8' + ); + } catch {} + } + + @Get() + @Version(VERSION_NEUTRAL) + public getSitemapXml(@Res() response: Response) { + const currentDate = format(getYesterday(), DATE_FORMAT); + + response.setHeader('content-type', 'application/xml'); + response.send( + interpolate(this.sitemapXml, { + currentDate, + personalFinanceTools: this.configurationService.get( + 'ENABLE_FEATURE_SUBSCRIPTION' + ) + ? this.sitemapService.getPersonalFinanceTools({ currentDate }) + : '' + }) + ); + } +} diff --git a/apps/api/src/app/sitemap/sitemap.module.ts b/apps/api/src/app/endpoints/sitemap/sitemap.module.ts similarity index 70% rename from apps/api/src/app/sitemap/sitemap.module.ts rename to apps/api/src/app/endpoints/sitemap/sitemap.module.ts index d1059d408..abf2e370e 100644 --- a/apps/api/src/app/sitemap/sitemap.module.ts +++ b/apps/api/src/app/endpoints/sitemap/sitemap.module.ts @@ -3,9 +3,11 @@ import { ConfigurationModule } from '@ghostfolio/api/services/configuration/conf import { Module } from '@nestjs/common'; import { SitemapController } from './sitemap.controller'; +import { SitemapService } from './sitemap.service'; @Module({ controllers: [SitemapController], - imports: [ConfigurationModule] + imports: [ConfigurationModule], + providers: [SitemapService] }) export class SitemapModule {} diff --git a/apps/api/src/app/endpoints/sitemap/sitemap.service.ts b/apps/api/src/app/endpoints/sitemap/sitemap.service.ts new file mode 100644 index 000000000..e56dc57a8 --- /dev/null +++ b/apps/api/src/app/endpoints/sitemap/sitemap.service.ts @@ -0,0 +1,43 @@ +import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; + +import { Injectable } from '@nestjs/common'; + +@Injectable() +export class SitemapService { + public getPersonalFinanceTools({ currentDate }: { currentDate: string }) { + return personalFinanceTools + .map(({ alias, key }) => { + return [ + '', + ` https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + '', + '', + ` https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + '', + '', + ` https://ghostfol.io/es/recursos/personal-finance-tools/alternativa-de-software-libre-a-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + '', + '', + ` https://ghostfol.io/fr/ressources/personal-finance-tools/alternative-open-source-a-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + '', + '', + ` https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + '', + '', + ` https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + '', + '', + ` https://ghostfol.io/pt/recursos/personal-finance-tools/alternativa-de-software-livre-ao-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + '' + ].join('\n'); + }) + .join('\n'); + } +} diff --git a/apps/api/src/app/sitemap/sitemap.controller.ts b/apps/api/src/app/sitemap/sitemap.controller.ts deleted file mode 100644 index aad5e39a1..000000000 --- a/apps/api/src/app/sitemap/sitemap.controller.ts +++ /dev/null @@ -1,80 +0,0 @@ -import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service'; -import { - DATE_FORMAT, - getYesterday, - interpolate -} from '@ghostfolio/common/helper'; -import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; - -import { Controller, Get, Res, VERSION_NEUTRAL, Version } from '@nestjs/common'; -import { format } from 'date-fns'; -import { Response } from 'express'; -import { readFileSync } from 'fs'; -import { join } from 'path'; - -@Controller('sitemap.xml') -export class SitemapController { - public sitemapXml = ''; - - public constructor( - private readonly configurationService: ConfigurationService - ) { - try { - this.sitemapXml = readFileSync( - join(__dirname, 'assets', 'sitemap.xml'), - 'utf8' - ); - } catch {} - } - - @Get() - @Version(VERSION_NEUTRAL) - public async getSitemapXml(@Res() response: Response): Promise { - const currentDate = format(getYesterday(), DATE_FORMAT); - - response.setHeader('content-type', 'application/xml'); - response.send( - interpolate(this.sitemapXml, { - currentDate, - personalFinanceTools: this.configurationService.get( - 'ENABLE_FEATURE_SUBSCRIPTION' - ) - ? personalFinanceTools - .map(({ alias, key }) => { - return [ - '', - ` https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/es/recursos/personal-finance-tools/alternativa-de-software-libre-a-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/fr/ressources/personal-finance-tools/alternative-open-source-a-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/pt/recursos/personal-finance-tools/alternativa-de-software-livre-ao-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '' - ].join('\n'); - }) - .join('\n') - : '' - }) - ); - } -} From 29ecfc11378bc57e4a2e5e7dba22b93e9d03116d Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 11:56:56 +0200 Subject: [PATCH 27/56] Feature/migrate assistant and value component to control flow (part 3) (#4981) * Migrate to control flow * Update changelog --- CHANGELOG.md | 2 + libs/ui/src/lib/assistant/assistant.html | 125 +++++++++++---------- libs/ui/src/lib/value/value.component.html | 4 +- 3 files changed, 67 insertions(+), 64 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d77ae783..200b65771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Migrated the `@ghostfolio/ui/assistant` component to control flow +- Migrated the `@ghostfolio/ui/value` component to control flow - Renamed `GranteeUser` to `granteeUser` in the `Access` database schema - Improved the language localization for French (`fr`) - Upgraded `class-validator` from version `0.14.1` to `0.14.2` diff --git a/libs/ui/src/lib/assistant/assistant.html b/libs/ui/src/lib/assistant/assistant.html index 55298f2ec..87b9a9c61 100644 --- a/libs/ui/src/lib/assistant/assistant.html +++ b/libs/ui/src/lib/assistant/assistant.html @@ -36,69 +36,40 @@ } -
    - @if (searchResults?.quickLinks?.length !== 0 || isLoading.quickLinks) { -
    -
    - Quick Links + @if (searchFormControl.value) { +
    + @if (searchResults?.quickLinks?.length !== 0 || isLoading.quickLinks) { +
    +
    + Quick Links +
    + @for ( + searchResultItem of searchResults?.quickLinks; + track searchResultItem + ) { + + } + @if (isLoading.quickLinks) { + + }
    - @for ( - searchResultItem of searchResults?.quickLinks; - track searchResultItem - ) { - - } - @if (isLoading.quickLinks) { - - } -
    - } -
    -
    Holdings
    - @for ( - searchResultItem of searchResults?.holdings; - track searchResultItem - ) { - } - @if (searchResults?.holdings?.length === 0) { - @if (isLoading.holdings) { - - } @else { -
    No entries...
    - } - } -
    - @if (hasPermissionToAccessAdminControl) { -
    +
    - Asset Profiles + Holdings
    @for ( - searchResultItem of searchResults?.assetProfiles; + searchResultItem of searchResults?.holdings; track searchResultItem ) { } - @if (searchResults?.assetProfiles?.length === 0) { - @if (isLoading.assetProfiles) { + @if (searchResults?.holdings?.length === 0) { + @if (isLoading.holdings) { - } -
    + @if (hasPermissionToAccessAdminControl) { +
    +
    + Asset Profiles +
    + @for ( + searchResultItem of searchResults?.assetProfiles; + track searchResultItem + ) { + + } + @if (searchResults?.assetProfiles?.length === 0) { + @if (isLoading.assetProfiles) { + + } @else { +
    No entries...
    + } + } +
    + } +
    + }
    @if (!searchFormControl.value) { diff --git a/libs/ui/src/lib/value/value.component.html b/libs/ui/src/lib/value/value.component.html index eec99f4be..8c9fa7e16 100644 --- a/libs/ui/src/lib/value/value.component.html +++ b/libs/ui/src/lib/value/value.component.html @@ -10,7 +10,7 @@ class="align-items-center d-flex" [ngClass]="position === 'end' ? 'justify-content-end' : ''" > - + @if (isNumber || value === null) { @if (colorizeSign && !useAbsoluteValue) { @if (+value > 0) {
    +
    @@ -59,7 +59,7 @@
    } } - + } @if (isString) {
    Date: Sat, 21 Jun 2025 12:12:32 +0200 Subject: [PATCH 28/56] Feature/update locales (#4984) * Update locales * Update translation * Update changelog --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- CHANGELOG.md | 1 + apps/client/src/locales/messages.ca.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.de.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.es.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.fr.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.it.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.nl.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.pl.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.pt.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.tr.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.uk.xlf | 32 ++++++++++++++----------- apps/client/src/locales/messages.xlf | 31 +++++++++++++----------- apps/client/src/locales/messages.zh.xlf | 32 ++++++++++++++----------- 13 files changed, 216 insertions(+), 168 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 200b65771..40d44933c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Migrated the `@ghostfolio/ui/value` component to control flow - Renamed `GranteeUser` to `granteeUser` in the `Access` database schema - Improved the language localization for French (`fr`) +- Improved the language localization for German (`de`) - Upgraded `class-validator` from version `0.14.1` to `0.14.2` ### Fixed diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 270f6ad4e..205a4c823 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -713,10 +713,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Cash Balances @@ -1331,7 +1327,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -4308,7 +4304,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -4408,7 +4404,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -5697,7 +5693,7 @@ Date Range libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -5705,7 +5701,7 @@ Reset Filters libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -5713,7 +5709,7 @@ Apply Filters libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7083,7 +7079,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7688,15 +7684,15 @@ 154 - + Quick Links Quick Links libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Asset Profiles @@ -7744,6 +7740,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 1474704c3..9c6c45e33 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -1678,7 +1678,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -2176,10 +2176,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Update activity @@ -2310,7 +2306,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -3334,7 +3330,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -5828,7 +5824,7 @@ Zeitraum libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6024,7 +6020,7 @@ Filter zurücksetzen libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6048,7 +6044,7 @@ Filter anwenden libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7107,7 +7103,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7688,15 +7684,15 @@ 154 - + Quick Links Schnellzugriff libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Anlageprofile @@ -7744,6 +7740,14 @@ 18 + + Holdings + Positionen + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index e8c6fc621..701eb1a3c 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -1663,7 +1663,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -2161,10 +2161,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Update activity @@ -2295,7 +2291,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -3319,7 +3315,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -5805,7 +5801,7 @@ Rango de fechas libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6001,7 +5997,7 @@ Reiniciar filtros libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6025,7 +6021,7 @@ Aplicar filtros libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7084,7 +7080,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7689,15 +7685,15 @@ 154 - + Quick Links Enlaces rápidos libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Perfiles de activos @@ -7745,6 +7741,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 3ec7859e3..3584ab0da 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -670,7 +670,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -1918,7 +1918,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -2780,10 +2780,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Pricing @@ -3318,7 +3314,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -5804,7 +5800,7 @@ Intervalle de Date libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6000,7 +5996,7 @@ Réinitialiser les Filtres libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6024,7 +6020,7 @@ Appliquer les Filtres libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7083,7 +7079,7 @@ Étiquette libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7688,15 +7684,15 @@ 154 - + Quick Links Liens rapides libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Profils d’Actifs @@ -7744,6 +7740,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index cbc41f9c7..33e459aa9 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -1663,7 +1663,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -2161,10 +2161,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Update activity @@ -2295,7 +2291,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -3319,7 +3315,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -5805,7 +5801,7 @@ Intervallo di date libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6001,7 +5997,7 @@ Reset Filtri libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6025,7 +6021,7 @@ Applica i Filtri libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7084,7 +7080,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7689,15 +7685,15 @@ 154 - + Quick Links Collegamenti rapidi libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Profili delle risorse @@ -7745,6 +7741,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index cc2741271..6d6c3d173 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -1662,7 +1662,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -2160,10 +2160,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Update activity @@ -2294,7 +2290,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -3318,7 +3314,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -5804,7 +5800,7 @@ Datumbereik libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6000,7 +5996,7 @@ Filters Herstellen libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6024,7 +6020,7 @@ Filters Toepassen libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7083,7 +7079,7 @@ Label libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7688,15 +7684,15 @@ 154 - + Quick Links Quick Links libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Asset Profiles @@ -7744,6 +7740,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index 3eb392710..eab42595d 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -1219,7 +1219,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -3931,7 +3931,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -4031,7 +4031,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -4425,10 +4425,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Pricing @@ -5804,7 +5800,7 @@ Zakres Dat libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6000,7 +5996,7 @@ Resetuj Filtry libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6024,7 +6020,7 @@ Zastosuj Filtry libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7083,7 +7079,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7688,15 +7684,15 @@ 154 - + Quick Links Szybkie linki libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Profile zasobów @@ -7744,6 +7740,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index d7c30fccb..b9e817e7a 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -670,7 +670,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -1902,7 +1902,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -2680,10 +2680,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Pricing @@ -3318,7 +3314,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -5804,7 +5800,7 @@ Período libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6000,7 +5996,7 @@ Redefinir filtros libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6024,7 +6020,7 @@ Aplicar filtros libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7083,7 +7079,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7688,15 +7684,15 @@ 154 - + Quick Links Links rápidos libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Perfis de ativos @@ -7744,6 +7740,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index f6ed7f3c0..b42511b14 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -1171,7 +1171,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -3411,7 +3411,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -3511,7 +3511,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -3897,10 +3897,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Pricing @@ -5804,7 +5800,7 @@ Tarih Aralığı libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6000,7 +5996,7 @@ Filtreleri Sıfırla libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6024,7 +6020,7 @@ Filtreleri Uygula libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7083,7 +7079,7 @@ Etiket libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7688,15 +7684,15 @@ 154 - + Quick Links Hızlı Bağlantılar libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Varlık Profilleri @@ -7744,6 +7740,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 34fc7b8d9..a72b3893f 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -729,10 +729,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Cash Balances @@ -1215,7 +1211,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -4524,7 +4520,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -4644,7 +4640,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -6319,7 +6315,7 @@ Діапазон дат libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -6327,7 +6323,7 @@ Тег libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -6335,7 +6331,7 @@ Скинути фільтри libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6343,7 +6339,7 @@ Застосувати фільтри libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7688,15 +7684,15 @@ 154 - + Quick Links Quick Links libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles Asset Profiles @@ -7744,6 +7740,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 7be2c3029..352e658a4 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -1162,7 +1162,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -3617,7 +3617,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -3706,7 +3706,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -4057,10 +4057,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Pricing @@ -5264,7 +5260,7 @@ Date Range libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -5445,7 +5441,7 @@ Reset Filters libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -5473,7 +5469,7 @@ Apply Filters libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -6383,7 +6379,7 @@ Tag libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -6915,14 +6911,14 @@ 154 - + Quick Links libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles libs/ui/src/lib/assistant/assistant.html @@ -6964,6 +6960,13 @@ 18 + + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index 67011adf9..d43ecab5c 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -1228,7 +1228,7 @@ libs/ui/src/lib/assistant/assistant.html - 206 + 207 @@ -3940,7 +3940,7 @@ libs/ui/src/lib/assistant/assistant.html - 145 + 146 @@ -4040,7 +4040,7 @@ libs/ui/src/lib/assistant/assistant.html - 167 + 168 @@ -4434,10 +4434,6 @@ apps/client/src/app/pages/public/public-page.html 70 - - libs/ui/src/lib/assistant/assistant.html - 70 - Pricing @@ -5789,7 +5785,7 @@ 日期范围 libs/ui/src/lib/assistant/assistant.html - 131 + 132 @@ -5993,7 +5989,7 @@ 重置过滤器 libs/ui/src/lib/assistant/assistant.html - 225 + 226 @@ -6025,7 +6021,7 @@ 应用过滤器 libs/ui/src/lib/assistant/assistant.html - 235 + 236 @@ -7084,7 +7080,7 @@ 标签 libs/ui/src/lib/assistant/assistant.html - 195 + 196 @@ -7689,15 +7685,15 @@ 154 - + Quick Links 快速链接 libs/ui/src/lib/assistant/assistant.html - 45 + 43 - + Asset Profiles 资产概况 @@ -7745,6 +7741,14 @@ 18 + + Holdings + Holdings + + libs/ui/src/lib/assistant/assistant.html + 68 + + From 314b12158418b21d81bf7cb7eef029e1bcbddd9e Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 12:50:32 +0200 Subject: [PATCH 29/56] Feature/refactor sitemap module (part 2) (#4985) * Refactor sitemap module --- .../app/endpoints/sitemap/sitemap.module.ts | 3 +- .../app/endpoints/sitemap/sitemap.service.ts | 57 +++++++++---------- libs/common/src/lib/routes/routes.ts | 18 +++--- 3 files changed, 38 insertions(+), 40 deletions(-) diff --git a/apps/api/src/app/endpoints/sitemap/sitemap.module.ts b/apps/api/src/app/endpoints/sitemap/sitemap.module.ts index abf2e370e..73b5d78b0 100644 --- a/apps/api/src/app/endpoints/sitemap/sitemap.module.ts +++ b/apps/api/src/app/endpoints/sitemap/sitemap.module.ts @@ -1,4 +1,5 @@ import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module'; +import { I18nModule } from '@ghostfolio/api/services/i18n/i18n.module'; import { Module } from '@nestjs/common'; @@ -7,7 +8,7 @@ import { SitemapService } from './sitemap.service'; @Module({ controllers: [SitemapController], - imports: [ConfigurationModule], + imports: [ConfigurationModule, I18nModule], providers: [SitemapService] }) export class SitemapModule {} diff --git a/apps/api/src/app/endpoints/sitemap/sitemap.service.ts b/apps/api/src/app/endpoints/sitemap/sitemap.service.ts index e56dc57a8..6daeeaa54 100644 --- a/apps/api/src/app/endpoints/sitemap/sitemap.service.ts +++ b/apps/api/src/app/endpoints/sitemap/sitemap.service.ts @@ -1,42 +1,39 @@ +import { I18nService } from '@ghostfolio/api/services/i18n/i18n.service'; +import { SUPPORTED_LANGUAGE_CODES } from '@ghostfolio/common/config'; import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; import { Injectable } from '@nestjs/common'; @Injectable() export class SitemapService { + public constructor(private readonly i18nService: I18nService) {} + public getPersonalFinanceTools({ currentDate }: { currentDate: string }) { return personalFinanceTools .map(({ alias, key }) => { - return [ - '', - ` https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/es/recursos/personal-finance-tools/alternativa-de-software-libre-a-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/fr/ressources/personal-finance-tools/alternative-open-source-a-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '', - '', - ` https://ghostfol.io/pt/recursos/personal-finance-tools/alternativa-de-software-livre-ao-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '' - ].join('\n'); + return SUPPORTED_LANGUAGE_CODES.map((languageCode) => { + const resourcesPath = this.i18nService.getTranslation({ + languageCode, + id: 'routes.resources' + }); + + const personalFinanceToolsPath = this.i18nService.getTranslation({ + languageCode, + id: 'routes.resources.personalFinanceTools' + }); + + const openSourceAlternativeToPath = this.i18nService.getTranslation({ + languageCode, + id: 'routes.resources.personalFinanceTools.openSourceAlternativeTo' + }); + + return [ + '', + ` https://ghostfol.io/${languageCode}/${resourcesPath}/${personalFinanceToolsPath}/${openSourceAlternativeToPath}-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + '' + ].join('\n'); + }); }) .join('\n'); } diff --git a/libs/common/src/lib/routes/routes.ts b/libs/common/src/lib/routes/routes.ts index ab3e5afd0..360485619 100644 --- a/libs/common/src/lib/routes/routes.ts +++ b/libs/common/src/lib/routes/routes.ts @@ -261,13 +261,13 @@ export const publicRoutes = { title: $localize`Registration` }, resources: { - path: $localize`:kebab-case:resources`, - routerLink: ['/' + $localize`:kebab-case:resources`], + path: $localize`:kebab-case@@routes.resources:resources`, + routerLink: ['/' + $localize`:kebab-case@@routes.resources:resources`], subRoutes: { glossary: { path: $localize`:kebab-case:glossary`, routerLink: [ - '/' + $localize`:kebab-case:resources`, + '/' + $localize`:kebab-case@@routes.resources:resources`, $localize`:kebab-case:glossary` ], title: $localize`Glossary` @@ -275,7 +275,7 @@ export const publicRoutes = { guides: { path: $localize`:kebab-case:guides`, routerLink: [ - '/' + $localize`:kebab-case:resources`, + '/' + $localize`:kebab-case@@routes.resources:resources`, $localize`:kebab-case:guides` ], title: $localize`Guides` @@ -283,20 +283,20 @@ export const publicRoutes = { markets: { path: $localize`:kebab-case:markets`, routerLink: [ - '/' + $localize`:kebab-case:resources`, + '/' + $localize`:kebab-case@@routes.resources:resources`, $localize`:kebab-case:markets` ], title: $localize`Markets` }, personalFinanceTools: { - path: 'personal-finance-tools', + path: $localize`:kebab-case@@routes.resources.personalFinanceTools:personal-finance-tools`, routerLink: [ - '/' + $localize`:kebab-case:resources`, - 'personal-finance-tools' + '/' + $localize`:kebab-case@@routes.resources:resources`, + $localize`:kebab-case@@routes.resources.personalFinanceTools:personal-finance-tools` ], subRoutes: { product: { - path: $localize`:kebab-case:open-source-alternative-to`, + path: $localize`:kebab-case@@routes.resources.personalFinanceTools.openSourceAlternativeTo:open-source-alternative-to`, title: $localize`Open Source Alternative to` } }, From 1f50a9bf7b9517fab2d220e76af899ab7065f313 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Jun 2025 12:56:23 +0200 Subject: [PATCH 30/56] Feature/update locales (#4986) * Update locales * Update translation --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- apps/client/src/locales/messages.ca.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.de.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.es.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.fr.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.it.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.nl.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.pl.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.pt.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.tr.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.uk.xlf | 17 +++++++++++++++-- apps/client/src/locales/messages.xlf | 16 ++++++++++++++-- apps/client/src/locales/messages.zh.xlf | 17 +++++++++++++++-- 12 files changed, 179 insertions(+), 24 deletions(-) diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 205a4c823..5a603314d 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -509,7 +509,7 @@ 260 - + resources recursos kebab-case @@ -5131,7 +5131,7 @@ 303 - + open-source-alternative-to open-source-alternative-to kebab-case @@ -7748,6 +7748,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 9c6c45e33..7c3e20a14 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -5249,7 +5249,7 @@ 260 - + resources ressourcen kebab-case @@ -5334,7 +5334,7 @@ 43 - + open-source-alternative-to open-source-alternative-zu kebab-case @@ -7748,6 +7748,19 @@ 68 + + personal-finance-tools + tools-fuer-persoenliche-finanzen + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 701eb1a3c..7d7ef727e 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -5226,7 +5226,7 @@ 260 - + resources recursos kebab-case @@ -5311,7 +5311,7 @@ 43 - + open-source-alternative-to alternativa-de-software-libre-a kebab-case @@ -7749,6 +7749,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 3584ab0da..01998df03 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -5225,7 +5225,7 @@ 260 - + resources ressources kebab-case @@ -5310,7 +5310,7 @@ 43 - + open-source-alternative-to alternative-open-source-a kebab-case @@ -7748,6 +7748,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 33e459aa9..01386c808 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -5226,7 +5226,7 @@ 260 - + resources risorse kebab-case @@ -5311,7 +5311,7 @@ 43 - + open-source-alternative-to alternativa-open-source-a kebab-case @@ -7749,6 +7749,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 6d6c3d173..2673cdced 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -5225,7 +5225,7 @@ 260 - + resources bronnen kebab-case @@ -5310,7 +5310,7 @@ 43 - + open-source-alternative-to open-source-alternatief-voor kebab-case @@ -7748,6 +7748,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index eab42595d..baca49efb 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -141,7 +141,7 @@ 260 - + resources zasoby kebab-case @@ -4710,7 +4710,7 @@ 303 - + open-source-alternative-to alternatywa-open-source-dla kebab-case @@ -7748,6 +7748,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index b9e817e7a..d5b91b326 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -5225,7 +5225,7 @@ 260 - + resources recursos kebab-case @@ -5310,7 +5310,7 @@ 43 - + open-source-alternative-to alternativa-de-software-livre-ao kebab-case @@ -7748,6 +7748,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index b42511b14..c28b26009 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -141,7 +141,7 @@ 260 - + resources kaynaklar kebab-case @@ -4202,7 +4202,7 @@ 303 - + open-source-alternative-to Açık kaynak alternatif kebab-case @@ -7748,6 +7748,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index a72b3893f..b161f0543 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -509,7 +509,7 @@ 260 - + resources resources kebab-case @@ -5521,7 +5521,7 @@ 303 - + open-source-alternative-to відкритий-альтернативний-для kebab-case @@ -7748,6 +7748,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 352e658a4..5153999d6 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -134,7 +134,7 @@ 260 - + resources kebab-case @@ -4313,7 +4313,7 @@ 303 - + open-source-alternative-to kebab-case @@ -6967,6 +6967,18 @@ 68 + + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index d43ecab5c..f28e94d7c 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -142,7 +142,7 @@ 260 - + resources 资源 kebab-case @@ -4719,7 +4719,7 @@ 303 - + open-source-alternative-to 开源替代方案 kebab-case @@ -7749,6 +7749,19 @@ 68 + + personal-finance-tools + personal-finance-tools + kebab-case + + libs/common/src/lib/routes/routes.ts + 292 + + + libs/common/src/lib/routes/routes.ts + 295 + + From c8f46f64fbbf176fac0c7222d85800a6a1faf677 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 13:28:22 +0200 Subject: [PATCH 31/56] Feature/extend public routes by i18n ids in paths (#4987) * Add i18n ids --- libs/common/src/lib/routes/routes.ts | 76 +++++++++++++++------------- 1 file changed, 41 insertions(+), 35 deletions(-) diff --git a/libs/common/src/lib/routes/routes.ts b/libs/common/src/lib/routes/routes.ts index 360485619..65d63dce9 100644 --- a/libs/common/src/lib/routes/routes.ts +++ b/libs/common/src/lib/routes/routes.ts @@ -158,43 +158,46 @@ export const internalRoutes: Record = { export const publicRoutes = { about: { - path: $localize`:kebab-case:about`, - routerLink: ['/' + $localize`:kebab-case:about`], + path: $localize`:kebab-case@@routes.about:about`, + routerLink: ['/' + $localize`:kebab-case@@routes.about:about`], subRoutes: { changelog: { - path: $localize`:kebab-case:changelog`, + path: $localize`:kebab-case@@routes.about.changelog:changelog`, routerLink: [ - '/' + $localize`:kebab-case:about`, - $localize`:kebab-case:changelog` + '/' + $localize`:kebab-case@@routes.about:about`, + $localize`:kebab-case@@routes.about.changelog:changelog` ], title: $localize`Changelog` }, license: { - path: $localize`:kebab-case:license`, + path: $localize`:kebab-case@@routes.about.license:license`, routerLink: [ - '/' + $localize`:kebab-case:about`, - $localize`:kebab-case:license` + '/' + $localize`:kebab-case@@routes.about:about`, + $localize`:kebab-case@@routes.about.license:license` ], title: $localize`License` }, ossFriends: { path: 'oss-friends', - routerLink: ['/' + $localize`:kebab-case:about`, 'oss-friends'], + routerLink: [ + '/' + $localize`:kebab-case@@routes.about:about`, + 'oss-friends' + ], title: 'OSS Friends' }, privacyPolicy: { - path: $localize`:kebab-case:privacy-policy`, + path: $localize`:kebab-case@@routes.about.privacyPolicy:privacy-policy`, routerLink: [ - '/' + $localize`:kebab-case:about`, - $localize`:kebab-case:privacy-policy` + '/' + $localize`:kebab-case@@routes.about:about`, + $localize`:kebab-case@@routes.about.privacyPolicy:privacy-policy` ], title: $localize`Privacy Policy` }, termsOfService: { - path: $localize`:kebab-case:terms-of-service`, + path: $localize`:kebab-case@@routes.about.termsOfService:terms-of-service`, routerLink: [ - '/' + $localize`:kebab-case:about`, - $localize`:kebab-case:terms-of-service` + '/' + $localize`:kebab-case@@routes.about:about`, + $localize`:kebab-case@@routes.about.termsOfService:terms-of-service` ], title: $localize`Terms of Service` } @@ -207,24 +210,25 @@ export const publicRoutes = { title: $localize`Blog` }, demo: { + excludeFromSitemap: true, path: 'demo', routerLink: ['/demo'], title: $localize`Live Demo` }, faq: { - path: $localize`:kebab-case:faq`, - routerLink: ['/' + $localize`:kebab-case:faq`], + path: $localize`:kebab-case@@routes.faq:faq`, + routerLink: ['/' + $localize`:kebab-case@@routes.faq:faq`], subRoutes: { saas: { path: 'saas', - routerLink: ['/' + $localize`:kebab-case:faq`, 'saas'], + routerLink: ['/' + $localize`:kebab-case@@routes.faq:faq`, 'saas'], title: $localize`Cloud` + ' (SaaS)' }, selfHosting: { - path: $localize`:kebab-case:self-hosting`, + path: $localize`:kebab-case@@routes.faq.selfHosting:self-hosting`, routerLink: [ - '/' + $localize`:kebab-case:faq`, - $localize`:kebab-case:self-hosting` + '/' + $localize`:kebab-case@@routes.faq:faq`, + $localize`:kebab-case@@routes.faq.selfHosting:self-hosting` ], title: $localize`Self-Hosting` } @@ -232,13 +236,13 @@ export const publicRoutes = { title: $localize`Frequently Asked Questions (FAQ)` }, features: { - path: $localize`:kebab-case:features`, - routerLink: ['/' + $localize`:kebab-case:features`], + path: $localize`:kebab-case@@routes.features:features`, + routerLink: ['/' + $localize`:kebab-case@@routes.features:features`], title: $localize`Features` }, markets: { - path: $localize`:kebab-case:markets`, - routerLink: ['/' + $localize`:kebab-case:markets`], + path: $localize`:kebab-case@@routes.markets:markets`, + routerLink: ['/' + $localize`:kebab-case@@routes.markets:markets`], title: $localize`Markets` }, openStartup: { @@ -247,17 +251,18 @@ export const publicRoutes = { title: 'Open Startup' }, pricing: { - path: $localize`:kebab-case:pricing`, - routerLink: ['/' + $localize`:kebab-case:pricing`], + path: $localize`:kebab-case@@routes.pricing:pricing`, + routerLink: ['/' + $localize`:kebab-case@@routes.pricing:pricing`], title: $localize`Pricing` }, public: { + excludeFromSitemap: true, path: 'p', routerLink: ['/p'] }, register: { - path: $localize`:kebab-case:register`, - routerLink: ['/' + $localize`:kebab-case:register`], + path: $localize`:kebab-case@@routes.register:register`, + routerLink: ['/' + $localize`:kebab-case@@routes.register:register`], title: $localize`Registration` }, resources: { @@ -265,26 +270,26 @@ export const publicRoutes = { routerLink: ['/' + $localize`:kebab-case@@routes.resources:resources`], subRoutes: { glossary: { - path: $localize`:kebab-case:glossary`, + path: $localize`:kebab-case@@routes.resources.glossary:glossary`, routerLink: [ '/' + $localize`:kebab-case@@routes.resources:resources`, - $localize`:kebab-case:glossary` + $localize`:kebab-case@@routes.resources.glossary:glossary` ], title: $localize`Glossary` }, guides: { - path: $localize`:kebab-case:guides`, + path: $localize`:kebab-case@@routes.resources.guides:guides`, routerLink: [ '/' + $localize`:kebab-case@@routes.resources:resources`, - $localize`:kebab-case:guides` + $localize`:kebab-case@@routes.resources.guides:guides` ], title: $localize`Guides` }, markets: { - path: $localize`:kebab-case:markets`, + path: $localize`:kebab-case@@routes.resources.markets:markets`, routerLink: [ '/' + $localize`:kebab-case@@routes.resources:resources`, - $localize`:kebab-case:markets` + $localize`:kebab-case@@routes.resources.markets:markets` ], title: $localize`Markets` }, @@ -295,6 +300,7 @@ export const publicRoutes = { $localize`:kebab-case@@routes.resources.personalFinanceTools:personal-finance-tools` ], subRoutes: { + excludeFromSitemap: true, product: { path: $localize`:kebab-case@@routes.resources.personalFinanceTools.openSourceAlternativeTo:open-source-alternative-to`, title: $localize`Open Source Alternative to` From e45b1e9b1f963f89b266ecdca08813fe8efb8f68 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Jun 2025 13:33:24 +0200 Subject: [PATCH 32/56] Feature/update locales (#4988) * Update locales * Update translation --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- apps/client/src/locales/messages.ca.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.de.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.es.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.fr.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.it.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.nl.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.pl.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.pt.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.tr.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.uk.xlf | 151 ++++++++++++------------ apps/client/src/locales/messages.xlf | 150 +++++++++++------------ apps/client/src/locales/messages.zh.xlf | 151 ++++++++++++------------ 12 files changed, 935 insertions(+), 876 deletions(-) diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 5a603314d..3b891c0c6 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -6,7 +6,7 @@ Característiques libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -369,7 +369,7 @@ 221 - + about sobre kebab-case @@ -391,18 +391,18 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + license llicències kebab-case @@ -415,98 +415,90 @@ 176 - + privacy-policy política de privacitat kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + faq faq kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features característiques kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + markets mercats kebab-case libs/common/src/lib/routes/routes.ts - 240 + 244 libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 - - - libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing preu kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + register registrar-se kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -515,27 +507,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -3343,7 +3335,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -3367,7 +3359,7 @@ Política de privadesa libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -3527,7 +3519,7 @@ Bloc libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -3555,7 +3547,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -3575,7 +3567,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -3587,20 +3579,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting autoallotjament kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -3776,11 +3768,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -4872,7 +4864,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -5096,7 +5088,7 @@ Registration libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -5128,7 +5120,7 @@ Personal Finance Tools libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -5137,7 +5129,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -5441,7 +5433,7 @@ Resources libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -6921,7 +6913,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6933,33 +6925,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides guides kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary glossary kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7414,17 +7406,17 @@ 112 - + terms-of-service terms-of-service kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7432,7 +7424,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7591,7 +7583,7 @@ 43 - + changelog changelog kebab-case @@ -7705,7 +7697,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7713,7 +7705,7 @@ Open Source Alternative to libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7754,11 +7746,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 7c3e20a14..2b0b38ec6 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -1474,7 +1474,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -1614,7 +1614,7 @@ Datenschutzbestimmungen libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -1926,7 +1926,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -1946,7 +1946,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -1954,7 +1954,7 @@ Features libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -1990,11 +1990,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -2342,7 +2342,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -2390,7 +2390,7 @@ Registrierung libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -2422,7 +2422,7 @@ Ressourcen libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -4286,7 +4286,7 @@ Tools für persönliche Finanzen libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -5109,41 +5109,41 @@ 386 - + faq haeufig-gestellte-fragen kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features features kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + about ueber-uns kebab-case @@ -5165,31 +5165,31 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + privacy-policy datenschutzbestimmungen kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + license lizenz kebab-case @@ -5202,51 +5202,43 @@ 176 - + markets maerkte kebab-case libs/common/src/lib/routes/routes.ts - 240 - - - libs/common/src/lib/routes/routes.ts - 241 + 244 libs/common/src/lib/routes/routes.ts - 284 - - - libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing preise kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + register registrierung kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -5255,27 +5247,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5340,7 +5332,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -6076,7 +6068,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6088,20 +6080,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting self-hosting kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6945,7 +6937,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6957,33 +6949,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides ratgeber kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary lexikon kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7438,17 +7430,17 @@ 112 - + terms-of-service allgemeine-geschaeftsbedingungen kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7456,7 +7448,7 @@ Allgemeine Geschäftsbedingungen libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7591,7 +7583,7 @@ 43 - + changelog changelog kebab-case @@ -7705,7 +7697,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7713,7 +7705,7 @@ Open Source Alternative zu libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7754,11 +7746,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + maerkte + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 7d7ef727e..afa18bee8 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -1459,7 +1459,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -1599,7 +1599,7 @@ Política de privacidad libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -1911,7 +1911,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -1931,7 +1931,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -1939,7 +1939,7 @@ Funcionalidades libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -1975,11 +1975,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -2327,7 +2327,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -2375,7 +2375,7 @@ Registro libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -2407,7 +2407,7 @@ Recursos libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -4263,7 +4263,7 @@ Herramientas de finanzas personales libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -5086,41 +5086,41 @@ 386 - + faq preguntas-mas-frecuentes kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features funcionalidades kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + about sobre kebab-case @@ -5142,31 +5142,31 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + privacy-policy politica-de-privacidad kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + license licencia kebab-case @@ -5179,51 +5179,43 @@ 176 - + markets mercados kebab-case libs/common/src/lib/routes/routes.ts - 240 + 244 libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 - - - libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing precios kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + register registro kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -5232,27 +5224,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5317,7 +5309,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -6053,7 +6045,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6065,20 +6057,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting auto alojado kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6922,7 +6914,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6934,33 +6926,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides guides kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary glossary kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7415,17 +7407,17 @@ 112 - + terms-of-service terms-of-service kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7433,7 +7425,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7592,7 +7584,7 @@ 43 - + changelog registro-decambios kebab-case @@ -7706,7 +7698,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7714,7 +7706,7 @@ Alternativa de software libre a libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7755,11 +7747,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 01998df03..91d9406b3 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -1802,7 +1802,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -1834,7 +1834,7 @@ Politique de Vie Privée libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -2218,7 +2218,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -2334,7 +2334,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -2342,7 +2342,7 @@ Fonctionnalités libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -2378,11 +2378,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -2790,7 +2790,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -2842,7 +2842,7 @@ Enregistrement libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -2894,7 +2894,7 @@ Ressources libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -4262,7 +4262,7 @@ Outils de Gestion de Patrimoine libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -5085,41 +5085,41 @@ 386 - + faq foire-aux-questions kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features fonctionnalites kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + about a-propos kebab-case @@ -5141,31 +5141,31 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + privacy-policy politique-de-confidentialite kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + license licence kebab-case @@ -5178,51 +5178,43 @@ 176 - + markets marches kebab-case libs/common/src/lib/routes/routes.ts - 240 + 244 libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 - - - libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing prix kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + register enregistrement kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -5231,27 +5223,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5316,7 +5308,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -6052,7 +6044,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6064,20 +6056,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting self-hosting kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6921,7 +6913,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6933,33 +6925,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides guides kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary glossaire kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7414,17 +7406,17 @@ 112 - + terms-of-service conditions-d-utilisation kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7432,7 +7424,7 @@ Conditions d’utilisation libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7591,7 +7583,7 @@ 43 - + changelog journal-des-modifications kebab-case @@ -7705,7 +7697,7 @@ Démo Live libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7713,7 +7705,7 @@ Solutions open source alternatives à libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7754,11 +7746,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 01386c808..e3f78753a 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -1459,7 +1459,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -1599,7 +1599,7 @@ Informativa sulla privacy libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -1911,7 +1911,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -1931,7 +1931,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -1939,7 +1939,7 @@ Funzionalità libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -1975,11 +1975,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -2327,7 +2327,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -2375,7 +2375,7 @@ Iscrizione libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -2407,7 +2407,7 @@ Risorse libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -4263,7 +4263,7 @@ Strumenti di finanza personale libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -5086,41 +5086,41 @@ 386 - + faq domande-piu-frequenti kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features funzionalita kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + about informazioni-su kebab-case @@ -5142,31 +5142,31 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + privacy-policy informativa-sulla-privacy kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + license licenza kebab-case @@ -5179,51 +5179,43 @@ 176 - + markets mercati kebab-case libs/common/src/lib/routes/routes.ts - 240 + 244 libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 - - - libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing prezzi kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + register iscrizione kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -5232,27 +5224,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5317,7 +5309,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -6053,7 +6045,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6065,20 +6057,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting self-hosting kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6922,7 +6914,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6934,33 +6926,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides guide kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary glossario kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7415,17 +7407,17 @@ 112 - + terms-of-service termini-e-condizioni kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7433,7 +7425,7 @@ Termini e condizioni libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7592,7 +7584,7 @@ 43 - + changelog registro-delle-modifiche kebab-case @@ -7706,7 +7698,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7714,7 +7706,7 @@ L’alternativa open source a libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7755,11 +7747,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 2673cdced..958ccc4f7 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -1458,7 +1458,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -1598,7 +1598,7 @@ Privacybeleid libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -1910,7 +1910,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -1930,7 +1930,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -1938,7 +1938,7 @@ Functionaliteiten libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -1974,11 +1974,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -2326,7 +2326,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -2374,7 +2374,7 @@ Registratie libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -2406,7 +2406,7 @@ Bronnen libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -4262,7 +4262,7 @@ Tools voor persoonlijke financiën libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -5085,41 +5085,41 @@ 386 - + faq veelgestelde-vragen kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features functionaliteiten kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + about over kebab-case @@ -5141,31 +5141,31 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + privacy-policy privacybeleid kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + license licentie kebab-case @@ -5178,51 +5178,43 @@ 176 - + markets markten kebab-case libs/common/src/lib/routes/routes.ts - 240 + 244 libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 - - - libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing prijzen kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + register registratie kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -5231,27 +5223,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5316,7 +5308,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -6052,7 +6044,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6064,20 +6056,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting zelf hosten kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6921,7 +6913,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6933,33 +6925,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides gidsen kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary woordenlijst kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7414,17 +7406,17 @@ 112 - + terms-of-service servicevoorwaarden kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7432,7 +7424,7 @@ Servicevoorwaarden libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7591,7 +7583,7 @@ 43 - + changelog wijzigingslogboek kebab-case @@ -7705,7 +7697,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7713,7 +7705,7 @@ Open Source alternatief voor libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7754,11 +7746,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index baca49efb..04cd0a9e9 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -1,7 +1,7 @@ - + about o-ghostfolio kebab-case @@ -23,52 +23,52 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + faq faq kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features funkcje kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + license licencja kebab-case @@ -81,64 +81,56 @@ 176 - + markets rynki kebab-case libs/common/src/lib/routes/routes.ts - 240 - - - libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 + 244 libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing cennik kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + privacy-policy polityka-prywatnosci kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + register zarejestruj kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -147,27 +139,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -3031,7 +3023,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -3055,7 +3047,7 @@ Polityka Prywatności libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -3207,7 +3199,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -3235,7 +3227,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -3259,7 +3251,7 @@ Funkcje libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -3419,11 +3411,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -4435,7 +4427,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -4675,7 +4667,7 @@ Rejestracja libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -4707,7 +4699,7 @@ Narzędzia finansów osobistych libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -4716,7 +4708,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -4996,7 +4988,7 @@ Zasoby libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -6052,7 +6044,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6064,20 +6056,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting wlasny-hosting kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6921,7 +6913,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6933,33 +6925,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides poradniki kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary slowniczek kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7414,17 +7406,17 @@ 112 - + terms-of-service warunki-świadczenia-usług kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7432,7 +7424,7 @@ Warunki świadczenia usług libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7591,7 +7583,7 @@ 43 - + changelog dziennik zmian kebab-case @@ -7705,7 +7697,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7713,7 +7705,7 @@ Alternatywa Open Source dla libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7754,11 +7746,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index d5b91b326..982426a93 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -1786,7 +1786,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -1818,7 +1818,7 @@ Política de Privacidade libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -2142,7 +2142,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -2258,7 +2258,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -2266,7 +2266,7 @@ Funcionalidades libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -2302,11 +2302,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -2690,7 +2690,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -2742,7 +2742,7 @@ Registo libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -2794,7 +2794,7 @@ Recursos libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -4262,7 +4262,7 @@ Ferramentas de finanças pessoais libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -5085,41 +5085,41 @@ 386 - + faq perguntas-mais-frequentes kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features funcionalidades kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + about sobre kebab-case @@ -5141,31 +5141,31 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + privacy-policy politica-de-privacidade kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + license licenca kebab-case @@ -5178,51 +5178,43 @@ 176 - + markets mercados kebab-case libs/common/src/lib/routes/routes.ts - 240 + 244 libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 - - - libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing precos kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + register registo kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -5231,27 +5223,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -5316,7 +5308,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -6052,7 +6044,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6064,20 +6056,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting auto-hospedagem kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6921,7 +6913,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6933,33 +6925,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides guides kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary glossary kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7414,17 +7406,17 @@ 112 - + terms-of-service termos-de-serviço kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7432,7 +7424,7 @@ Termos de Serviço libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7591,7 +7583,7 @@ 43 - + changelog changelog kebab-case @@ -7705,7 +7697,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7713,7 +7705,7 @@ Alternativa de software livre ao libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7754,11 +7746,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index c28b26009..b295bdef3 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -1,7 +1,7 @@ - + about hakkinda kebab-case @@ -23,52 +23,52 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + faq sss kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features oezellikler kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + license lisans kebab-case @@ -81,64 +81,56 @@ 176 - + markets piyasalar kebab-case libs/common/src/lib/routes/routes.ts - 240 - - - libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 + 244 libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing fiyatlandirma kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + privacy-policy gizlilik-politikasi kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + register kayit-ol kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -147,27 +139,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -2607,7 +2599,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -2631,7 +2623,7 @@ Gizlilik Politikası libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -2751,7 +2743,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -2779,7 +2771,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -2803,7 +2795,7 @@ Özellikler libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -2975,11 +2967,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -3907,7 +3899,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -4147,7 +4139,7 @@ Kayıt libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -4199,7 +4191,7 @@ Kişisel Finans Araçları libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -4208,7 +4200,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -4480,7 +4472,7 @@ Kaynaklar libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -6052,7 +6044,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6064,20 +6056,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting Kendini-Barındırma kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6921,7 +6913,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6933,33 +6925,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides kılavuzlar kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary sözlük kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7414,17 +7406,17 @@ 112 - + terms-of-service Hizmet Koşulları kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7432,7 +7424,7 @@ Hizmet Koşulları libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7591,7 +7583,7 @@ 43 - + changelog degisiklik-gunlugu kebab-case @@ -7705,7 +7697,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7713,7 +7705,7 @@ Open Source Alternative to libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7754,11 +7746,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index b161f0543..074e344e5 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -6,7 +6,7 @@ Функції libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -369,7 +369,7 @@ 221 - + about about kebab-case @@ -391,18 +391,18 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + license license kebab-case @@ -415,98 +415,90 @@ 176 - + privacy-policy privacy-policy kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + faq faq kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features features kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + markets markets kebab-case libs/common/src/lib/routes/routes.ts - 240 + 244 libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 - - - libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing pricing kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + register register kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -515,27 +507,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -3551,7 +3543,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -3575,7 +3567,7 @@ Політика конфіденційності libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -3743,7 +3735,7 @@ Блог libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -3771,7 +3763,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -3791,7 +3783,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -3803,20 +3795,20 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 - + self-hosting самохостинг kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -3992,11 +3984,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -5172,7 +5164,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -5420,7 +5412,7 @@ Реєстрація libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -5456,7 +5448,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -5476,7 +5468,7 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 @@ -5487,30 +5479,30 @@ 4 - + guides guides kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary glossary kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -5518,7 +5510,7 @@ Інструменти особистих фінансів libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -5527,7 +5519,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -6079,7 +6071,7 @@ Ресурси libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -7414,17 +7406,17 @@ 112 - + terms-of-service terms-of-service kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7432,7 +7424,7 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7591,7 +7583,7 @@ 43 - + changelog changelog kebab-case @@ -7705,7 +7697,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7713,7 +7705,7 @@ Альтернатива з відкритим кодом для libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7754,11 +7746,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 5153999d6..4daa5a3e3 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -2,7 +2,7 @@ - + about kebab-case @@ -23,50 +23,50 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + faq kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + license kebab-case @@ -78,60 +78,52 @@ 176 - + markets kebab-case libs/common/src/lib/routes/routes.ts - 240 - - - libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 + 244 libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + privacy-policy kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + register kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -139,27 +131,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -2819,7 +2811,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -2840,7 +2832,7 @@ Privacy Policy libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -2975,7 +2967,7 @@ Blog libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -3000,7 +2992,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -3022,7 +3014,7 @@ Features libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -3164,11 +3156,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -4066,7 +4058,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -4282,7 +4274,7 @@ Registration libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -4310,7 +4302,7 @@ Personal Finance Tools libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -4318,7 +4310,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -4593,7 +4585,7 @@ Resources libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -5472,16 +5464,16 @@ 236 - + self-hosting kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -5492,7 +5484,7 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 @@ -5521,7 +5513,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6260,19 +6252,19 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 - + glossary kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -6283,19 +6275,19 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 @@ -6691,19 +6683,19 @@ Terms of Service libs/common/src/lib/routes/routes.ts - 199 + 202 - + terms-of-service kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -6829,7 +6821,7 @@ 43 - + changelog kebab-case @@ -6929,14 +6921,14 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 Open Source Alternative to libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -6972,11 +6964,23 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index f28e94d7c..7a8978e3e 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -2,7 +2,7 @@ - + about 关于 kebab-case @@ -24,52 +24,52 @@ libs/common/src/lib/routes/routes.ts - 182 + 183 libs/common/src/lib/routes/routes.ts - 188 + 191 libs/common/src/lib/routes/routes.ts - 196 + 199 - + faq 常见问题 kebab-case libs/common/src/lib/routes/routes.ts - 215 + 219 libs/common/src/lib/routes/routes.ts - 216 + 220 libs/common/src/lib/routes/routes.ts - 220 + 224 libs/common/src/lib/routes/routes.ts - 226 + 230 - + features 功能 kebab-case libs/common/src/lib/routes/routes.ts - 235 + 239 libs/common/src/lib/routes/routes.ts - 236 + 240 - + license 许可证 kebab-case @@ -82,64 +82,56 @@ 176 - + markets 市场 kebab-case libs/common/src/lib/routes/routes.ts - 240 - - - libs/common/src/lib/routes/routes.ts - 241 - - - libs/common/src/lib/routes/routes.ts - 284 + 244 libs/common/src/lib/routes/routes.ts - 287 + 245 - + pricing 价钱 kebab-case libs/common/src/lib/routes/routes.ts - 250 + 254 libs/common/src/lib/routes/routes.ts - 251 + 255 - + privacy-policy 隐私政策 kebab-case libs/common/src/lib/routes/routes.ts - 186 + 189 libs/common/src/lib/routes/routes.ts - 189 + 192 - + register 注册 kebab-case libs/common/src/lib/routes/routes.ts - 259 + 264 libs/common/src/lib/routes/routes.ts - 260 + 265 @@ -148,27 +140,27 @@ kebab-case libs/common/src/lib/routes/routes.ts - 264 + 269 libs/common/src/lib/routes/routes.ts - 265 + 270 libs/common/src/lib/routes/routes.ts - 270 + 275 libs/common/src/lib/routes/routes.ts - 278 + 283 libs/common/src/lib/routes/routes.ts - 286 + 291 libs/common/src/lib/routes/routes.ts - 294 + 299 @@ -3040,7 +3032,7 @@ libs/common/src/lib/routes/routes.ts - 202 + 205 @@ -3064,7 +3056,7 @@ 隐私政策 libs/common/src/lib/routes/routes.ts - 191 + 194 @@ -3216,7 +3208,7 @@ 博客 libs/common/src/lib/routes/routes.ts - 207 + 210 @@ -3244,7 +3236,7 @@ libs/common/src/lib/routes/routes.ts - 232 + 236 @@ -3268,7 +3260,7 @@ 功能 libs/common/src/lib/routes/routes.ts - 237 + 241 @@ -3428,11 +3420,11 @@ libs/common/src/lib/routes/routes.ts - 242 + 246 libs/common/src/lib/routes/routes.ts - 289 + 294 @@ -4444,7 +4436,7 @@ libs/common/src/lib/routes/routes.ts - 252 + 256 @@ -4684,7 +4676,7 @@ 注册 libs/common/src/lib/routes/routes.ts - 261 + 266 @@ -4716,7 +4708,7 @@ 个人理财工具 libs/common/src/lib/routes/routes.ts - 303 + 309 @@ -4725,7 +4717,7 @@ kebab-case libs/common/src/lib/routes/routes.ts - 299 + 305 @@ -5029,7 +5021,7 @@ 资源 libs/common/src/lib/routes/routes.ts - 306 + 312 @@ -6024,17 +6016,17 @@ 236 - + self-hosting 自托管 kebab-case libs/common/src/lib/routes/routes.ts - 224 + 228 libs/common/src/lib/routes/routes.ts - 227 + 231 @@ -6046,7 +6038,7 @@ libs/common/src/lib/routes/routes.ts - 229 + 233 @@ -6078,7 +6070,7 @@ libs/common/src/lib/routes/routes.ts - 221 + 225 @@ -6922,7 +6914,7 @@ libs/common/src/lib/routes/routes.ts - 273 + 278 @@ -6934,33 +6926,33 @@ libs/common/src/lib/routes/routes.ts - 281 + 286 - + guides 指南 kebab-case libs/common/src/lib/routes/routes.ts - 276 + 281 libs/common/src/lib/routes/routes.ts - 279 + 284 - + glossary 词汇表 kebab-case libs/common/src/lib/routes/routes.ts - 268 + 273 libs/common/src/lib/routes/routes.ts - 271 + 276 @@ -7415,17 +7407,17 @@ 112 - + terms-of-service 服务条款 kebab-case libs/common/src/lib/routes/routes.ts - 194 + 197 libs/common/src/lib/routes/routes.ts - 197 + 200 @@ -7433,7 +7425,7 @@ 服务条款 libs/common/src/lib/routes/routes.ts - 199 + 202 @@ -7592,7 +7584,7 @@ 43 - + changelog 变更日志 kebab-case @@ -7706,7 +7698,7 @@ Live Demo libs/common/src/lib/routes/routes.ts - 212 + 216 @@ -7714,7 +7706,7 @@ Open Source Alternative to libs/common/src/lib/routes/routes.ts - 300 + 306 @@ -7755,11 +7747,24 @@ kebab-case libs/common/src/lib/routes/routes.ts - 292 + 297 libs/common/src/lib/routes/routes.ts - 295 + 300 + + + + markets + markets + kebab-case + + libs/common/src/lib/routes/routes.ts + 289 + + + libs/common/src/lib/routes/routes.ts + 292 From 56128d8fe812ce916852f3f28544907a9b037dbe Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 13:57:48 +0200 Subject: [PATCH 33/56] Feature/reuse root url in sitemap service (#4989) --- .../app/endpoints/sitemap/sitemap.service.ts | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/api/src/app/endpoints/sitemap/sitemap.service.ts b/apps/api/src/app/endpoints/sitemap/sitemap.service.ts index 6daeeaa54..ea8a7c8c2 100644 --- a/apps/api/src/app/endpoints/sitemap/sitemap.service.ts +++ b/apps/api/src/app/endpoints/sitemap/sitemap.service.ts @@ -1,3 +1,4 @@ +import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service'; import { I18nService } from '@ghostfolio/api/services/i18n/i18n.service'; import { SUPPORTED_LANGUAGE_CODES } from '@ghostfolio/common/config'; import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; @@ -6,9 +7,14 @@ import { Injectable } from '@nestjs/common'; @Injectable() export class SitemapService { - public constructor(private readonly i18nService: I18nService) {} + public constructor( + private readonly configurationService: ConfigurationService, + private readonly i18nService: I18nService + ) {} public getPersonalFinanceTools({ currentDate }: { currentDate: string }) { + const rootUrl = this.configurationService.get('ROOT_URL'); + return personalFinanceTools .map(({ alias, key }) => { return SUPPORTED_LANGUAGE_CODES.map((languageCode) => { @@ -28,13 +34,14 @@ export class SitemapService { }); return [ - '', - ` https://ghostfol.io/${languageCode}/${resourcesPath}/${personalFinanceToolsPath}/${openSourceAlternativeToPath}-${alias ?? key}`, - ` ${currentDate}T00:00:00+00:00`, - '' + ' ', + ` ${rootUrl}/${languageCode}/${resourcesPath}/${personalFinanceToolsPath}/${openSourceAlternativeToPath}-${alias ?? key}`, + ` ${currentDate}T00:00:00+00:00`, + ' ' ].join('\n'); }); }) + .flat() .join('\n'); } } From dca821e75c8401efb745648556ff5ab836dfe6a3 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Sun, 22 Jun 2025 00:22:36 +0700 Subject: [PATCH 34/56] Bugfix/resolve LegacyRouteConverter warning on startup (#4980) * Resolve LegacyRouteConverter warning on startup * Update changelog --- CHANGELOG.md | 1 + apps/api/src/app/app.module.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40d44933c..018a7cede 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fixed an issue in the `HtmlTemplateMiddleware` related to incorrect variable resolution +- Eliminated the _Unsupported route path_ warning of the `LegacyRouteConverter` on startup ## 2.172.0 - 2025-06-19 diff --git a/apps/api/src/app/app.module.ts b/apps/api/src/app/app.module.ts index 7e9704183..1c48b9702 100644 --- a/apps/api/src/app/app.module.ts +++ b/apps/api/src/app/app.module.ts @@ -141,6 +141,6 @@ import { UserModule } from './user/user.module'; }) export class AppModule implements NestModule { public configure(consumer: MiddlewareConsumer) { - consumer.apply(HtmlTemplateMiddleware).forRoutes('*'); + consumer.apply(HtmlTemplateMiddleware).forRoutes('*wildcard'); } } From ee7bb911d7b5ab7549ea3911a7a03bf46dbbc55f Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 19:26:06 +0200 Subject: [PATCH 35/56] Feature/simplify data providers management of admin control panel (#4991) * Set up open color for CSS variables usage * Simplify data providers management * Update changelog --- CHANGELOG.md | 5 ++ apps/client/project.json | 3 +- .../admin-settings.component.html | 42 ++++++++++++- .../admin-settings.component.scss | 20 ++++++- .../admin-settings.component.ts | 45 +++++--------- .../admin-settings/admin-settings.module.ts | 2 + ...ghostfolio-premium-api-dialog.component.ts | 60 ------------------- .../ghostfolio-premium-api-dialog.html | 49 --------------- .../ghostfolio-premium-api-dialog.scss | 2 - .../interfaces/interfaces.ts | 4 -- 10 files changed, 83 insertions(+), 149 deletions(-) delete mode 100644 apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts delete mode 100644 apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html delete mode 100644 apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.scss delete mode 100644 apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/interfaces/interfaces.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index 018a7cede..85a1da408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Set up `open-color` for CSS variable usage + ### Changed +- Simplified the data providers management of the admin control panel - Migrated the `@ghostfolio/ui/assistant` component to control flow - Migrated the `@ghostfolio/ui/value` component to control flow - Renamed `GranteeUser` to `granteeUser` in the `Access` database schema diff --git a/apps/client/project.json b/apps/client/project.json index 4bb7fe296..215c5dae1 100644 --- a/apps/client/project.json +++ b/apps/client/project.json @@ -73,7 +73,8 @@ "styles": [ "apps/client/src/assets/fonts/inter.css", "apps/client/src/styles/theme.scss", - "apps/client/src/styles.scss" + "apps/client/src/styles.scss", + "node_modules/open-color/open-color.css" ], "scripts": ["node_modules/marked/marked.min.js"], "vendorChunk": true, 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 368b98da5..f00b5bc88 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 @@ -2,6 +2,42 @@

    Data Providers

    + @if (isGhostfolioApiKeyValid === false) { + + + Ghostfolio Premium + + + + Fuel your self-hosted Ghostfolio with a + powerful data provider to access + 80,000+ tickers from over + 50 exchanges worldwide. + + + + Get Access + +
    or
    + + Learn more + +
    +
    + }
    @@ -23,8 +59,10 @@ [enableLink]="false" /> @if (isGhostfolioApiKeyValid === false) { - Early Accessnew } diff --git a/apps/client/src/app/components/admin-settings/admin-settings.component.scss b/apps/client/src/app/components/admin-settings/admin-settings.component.scss index 384143300..28bab4deb 100644 --- a/apps/client/src/app/components/admin-settings/admin-settings.component.scss +++ b/apps/client/src/app/components/admin-settings/admin-settings.component.scss @@ -1,16 +1,26 @@ :host { display: block; + a, button { &.special { - background: linear-gradient(45deg, rgb(228, 94, 237), rgb(104, 94, 237)); + background: linear-gradient(45deg, var(--oc-pink-5), var(--oc-violet-5)); color: #fff; } } .badge { - &.early-access { + &.new { border: 1px solid var(--mat-table-row-item-outline-color); + padding-bottom: 0.05rem; + } + } + + .mat-mdc-card { + --mdc-outlined-card-container-color: whitesmoke; + + .mat-mdc-card-actions { + min-height: 0; } } @@ -26,3 +36,9 @@ } } } + +:host-context(.theme-dark) { + .mat-mdc-card { + --mdc-outlined-card-container-color: #222222; + } +} diff --git a/apps/client/src/app/components/admin-settings/admin-settings.component.ts b/apps/client/src/app/components/admin-settings/admin-settings.component.ts index 8911fb818..209fbe9f0 100644 --- a/apps/client/src/app/components/admin-settings/admin-settings.component.ts +++ b/apps/client/src/app/components/admin-settings/admin-settings.component.ts @@ -19,14 +19,9 @@ import { OnDestroy, OnInit } from '@angular/core'; -import { MatDialog } from '@angular/material/dialog'; import { MatTableDataSource } from '@angular/material/table'; -import { DeviceDetectorService } from 'ngx-device-detector'; import { catchError, filter, of, Subject, takeUntil } from 'rxjs'; -import { GfGhostfolioPremiumApiDialogComponent } from './ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component'; -import { GhostfolioPremiumApiDialogParams } from './ghostfolio-premium-api-dialog/interfaces/interfaces'; - @Component({ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'gf-admin-settings', @@ -43,7 +38,6 @@ export class AdminSettingsComponent implements OnDestroy, OnInit { public isLoading = false; public pricingUrl: string; - private deviceType: string; private unsubscribeSubject = new Subject(); private user: User; @@ -51,15 +45,11 @@ export class AdminSettingsComponent implements OnDestroy, OnInit { private adminService: AdminService, private changeDetectorRef: ChangeDetectorRef, private dataService: DataService, - private deviceService: DeviceDetectorService, - private matDialog: MatDialog, private notificationService: NotificationService, private userService: UserService ) {} public ngOnInit() { - this.deviceType = this.deviceService.getDeviceInfo().deviceType; - this.userService.stateChanged .pipe(takeUntil(this.unsubscribeSubject)) .subscribe((state) => { @@ -100,25 +90,22 @@ export class AdminSettingsComponent implements OnDestroy, OnInit { } public onSetGhostfolioApiKey() { - const dialogRef = this.matDialog.open( - GfGhostfolioPremiumApiDialogComponent, - { - autoFocus: false, - data: { - deviceType: this.deviceType, - pricingUrl: this.pricingUrl - } as GhostfolioPremiumApiDialogParams, - height: this.deviceType === 'mobile' ? '98vh' : undefined, - width: this.deviceType === 'mobile' ? '100vw' : '50rem' - } - ); - - dialogRef - .afterClosed() - .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(() => { - this.initialize(); - }); + this.notificationService.prompt({ + confirmFn: (value) => { + const ghostfolioApiKey = value?.trim(); + + if (ghostfolioApiKey) { + this.dataService + .putAdminSetting(PROPERTY_API_KEY_GHOSTFOLIO, { + value: ghostfolioApiKey + }) + .subscribe(() => { + this.initialize(); + }); + } + }, + title: $localize`Please enter your Ghostfolio API key.` + }); } public ngOnDestroy() { diff --git a/apps/client/src/app/components/admin-settings/admin-settings.module.ts b/apps/client/src/app/components/admin-settings/admin-settings.module.ts index 228ddef00..52aec67be 100644 --- a/apps/client/src/app/components/admin-settings/admin-settings.module.ts +++ b/apps/client/src/app/components/admin-settings/admin-settings.module.ts @@ -7,6 +7,7 @@ import { GfValueComponent } from '@ghostfolio/ui/value'; import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; +import { MatCardModule } from '@angular/material/card'; import { MatMenuModule } from '@angular/material/menu'; import { MatProgressBarModule } from '@angular/material/progress-bar'; import { MatTableModule } from '@angular/material/table'; @@ -25,6 +26,7 @@ import { AdminSettingsComponent } from './admin-settings.component'; GfPremiumIndicatorComponent, GfValueComponent, MatButtonModule, + MatCardModule, MatMenuModule, MatProgressBarModule, MatTableModule, diff --git a/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts b/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts deleted file mode 100644 index e42e6259e..000000000 --- a/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts +++ /dev/null @@ -1,60 +0,0 @@ -import { NotificationService } from '@ghostfolio/client/core/notification/notification.service'; -import { DataService } from '@ghostfolio/client/services/data.service'; -import { PROPERTY_API_KEY_GHOSTFOLIO } from '@ghostfolio/common/config'; -import { GfPremiumIndicatorComponent } from '@ghostfolio/ui/premium-indicator'; - -import { Component, Inject } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { - MAT_DIALOG_DATA, - MatDialogModule, - MatDialogRef -} from '@angular/material/dialog'; - -import { GfDialogFooterModule } from '../../dialog-footer/dialog-footer.module'; -import { GfDialogHeaderModule } from '../../dialog-header/dialog-header.module'; -import { GhostfolioPremiumApiDialogParams } from './interfaces/interfaces'; - -@Component({ - imports: [ - GfDialogFooterModule, - GfDialogHeaderModule, - GfPremiumIndicatorComponent, - MatButtonModule, - MatDialogModule - ], - selector: 'gf-ghostfolio-premium-api-dialog', - styleUrls: ['./ghostfolio-premium-api-dialog.scss'], - templateUrl: './ghostfolio-premium-api-dialog.html' -}) -export class GfGhostfolioPremiumApiDialogComponent { - public constructor( - @Inject(MAT_DIALOG_DATA) public data: GhostfolioPremiumApiDialogParams, - private dataService: DataService, - public dialogRef: MatDialogRef, - private notificationService: NotificationService - ) {} - - public onCancel() { - this.dialogRef.close(); - } - - public onSetGhostfolioApiKey() { - this.notificationService.prompt({ - confirmFn: (value) => { - const ghostfolioApiKey = value?.trim(); - - if (ghostfolioApiKey) { - this.dataService - .putAdminSetting(PROPERTY_API_KEY_GHOSTFOLIO, { - value: ghostfolioApiKey - }) - .subscribe(() => { - this.dialogRef.close(); - }); - } - }, - title: $localize`Please enter your Ghostfolio API key.` - }); - } -} diff --git a/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html b/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html deleted file mode 100644 index 017133f5b..000000000 --- a/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html +++ /dev/null @@ -1,49 +0,0 @@ - - -
    -

    - Early access to the official - Ghostfolio Premium - - - data provider for self-hosters, offering - 80’000+ tickers from over 50 exchanges, is - ready now! -

    -
    - Get Early Access -
    - or -
    - -
    -
    - - diff --git a/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.scss b/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.scss deleted file mode 100644 index dc9093b45..000000000 --- a/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.scss +++ /dev/null @@ -1,2 +0,0 @@ -:host { -} diff --git a/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/interfaces/interfaces.ts b/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/interfaces/interfaces.ts deleted file mode 100644 index 0c629599e..000000000 --- a/apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/interfaces/interfaces.ts +++ /dev/null @@ -1,4 +0,0 @@ -export interface GhostfolioPremiumApiDialogParams { - deviceType: string; - pricingUrl: string; -} From 38ae224ee1cec7b3c1180a1e2b522c8c799a6ea1 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 19:26:27 +0200 Subject: [PATCH 36/56] Feature/upgrade prisma to version 6.10.1 (#4982) * Upgrade prisma to version 6.10.1 * Update changelog --- CHANGELOG.md | 1 + package-lock.json | 72 +++++++++++++++++++++++------------------------ package.json | 4 +-- 3 files changed, 39 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85a1da408..7ca95a697 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved the language localization for French (`fr`) - Improved the language localization for German (`de`) - Upgraded `class-validator` from version `0.14.1` to `0.14.2` +- Upgraded `prisma` from version `6.9.0` to `6.10.1` ### Fixed diff --git a/package-lock.json b/package-lock.json index 6c93d232d..d9f4dd47c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,7 +42,7 @@ "@nestjs/platform-express": "11.1.3", "@nestjs/schedule": "6.0.0", "@nestjs/serve-static": "5.0.3", - "@prisma/client": "6.9.0", + "@prisma/client": "6.10.1", "@simplewebauthn/browser": "13.1.0", "@simplewebauthn/server": "13.1.1", "@stripe/stripe-js": "7.3.1", @@ -148,7 +148,7 @@ "nx": "21.1.2", "prettier": "3.5.3", "prettier-plugin-organize-attributes": "1.0.0", - "prisma": "6.9.0", + "prisma": "6.10.1", "react": "18.2.0", "react-dom": "18.2.0", "replace-in-file": "8.3.0", @@ -9784,9 +9784,9 @@ "license": "MIT" }, "node_modules/@prisma/client": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-6.9.0.tgz", - "integrity": "sha512-Gg7j1hwy3SgF1KHrh0PZsYvAaykeR0PaxusnLXydehS96voYCGt1U5zVR31NIouYc63hWzidcrir1a7AIyCsNQ==", + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/@prisma/client/-/client-6.10.1.tgz", + "integrity": "sha512-Re4pMlcUsQsUTAYMK7EJ4Bw2kg3WfZAAlr8GjORJaK4VOP6LxRQUQ1TuLnxcF42XqGkWQ36q5CQF1yVadANQ6w==", "hasInstallScript": true, "license": "Apache-2.0", "engines": { @@ -9806,9 +9806,9 @@ } }, "node_modules/@prisma/config": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/@prisma/config/-/config-6.9.0.tgz", - "integrity": "sha512-Wcfk8/lN3WRJd5w4jmNQkUwhUw0eksaU/+BlAJwPQKW10k0h0LC9PD/6TQFmqKVbHQL0vG2z266r0S1MPzzhbA==", + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/@prisma/config/-/config-6.10.1.tgz", + "integrity": "sha512-kz4/bnqrOrzWo8KzYguN0cden4CzLJJ+2VSpKtF8utHS3l1JS0Lhv6BLwpOX6X9yNreTbZQZwewb+/BMPDCIYQ==", "devOptional": true, "license": "Apache-2.0", "dependencies": { @@ -9826,53 +9826,53 @@ } }, "node_modules/@prisma/debug": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-6.9.0.tgz", - "integrity": "sha512-bFeur/qi/Q+Mqk4JdQ3R38upSYPebv5aOyD1RKywVD+rAMLtRkmTFn28ZuTtVOnZHEdtxnNOCH+bPIeSGz1+Fg==", + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-6.10.1.tgz", + "integrity": "sha512-k2YT53cWxv9OLjW4zSYTZ6Z7j0gPfCzcr2Mj99qsuvlxr8WAKSZ2NcSR0zLf/mP4oxnYG842IMj3utTgcd7CaA==", "devOptional": true, "license": "Apache-2.0" }, "node_modules/@prisma/engines": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-6.9.0.tgz", - "integrity": "sha512-im0X0bwDLA0244CDf8fuvnLuCQcBBdAGgr+ByvGfQY9wWl6EA+kRGwVk8ZIpG65rnlOwtaWIr/ZcEU5pNVvq9g==", + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-6.10.1.tgz", + "integrity": "sha512-Q07P5rS2iPwk2IQr/rUQJ42tHjpPyFcbiH7PXZlV81Ryr9NYIgdxcUrwgVOWVm5T7ap02C0dNd1dpnNcSWig8A==", "devOptional": true, "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "@prisma/debug": "6.9.0", - "@prisma/engines-version": "6.9.0-10.81e4af48011447c3cc503a190e86995b66d2a28e", - "@prisma/fetch-engine": "6.9.0", - "@prisma/get-platform": "6.9.0" + "@prisma/debug": "6.10.1", + "@prisma/engines-version": "6.10.1-1.9b628578b3b7cae625e8c927178f15a170e74a9c", + "@prisma/fetch-engine": "6.10.1", + "@prisma/get-platform": "6.10.1" } }, "node_modules/@prisma/engines-version": { - "version": "6.9.0-10.81e4af48011447c3cc503a190e86995b66d2a28e", - "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-6.9.0-10.81e4af48011447c3cc503a190e86995b66d2a28e.tgz", - "integrity": "sha512-Qp9gMoBHgqhKlrvumZWujmuD7q4DV/gooEyPCLtbkc13EZdSz2RsGUJ5mHb3RJgAbk+dm6XenqG7obJEhXcJ6Q==", + "version": "6.10.1-1.9b628578b3b7cae625e8c927178f15a170e74a9c", + "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-6.10.1-1.9b628578b3b7cae625e8c927178f15a170e74a9c.tgz", + "integrity": "sha512-ZJFTsEqapiTYVzXya6TUKYDFnSWCNegfUiG5ik9fleQva5Sk3DNyyUi7X1+0ZxWFHwHDr6BZV5Vm+iwP+LlciA==", "devOptional": true, "license": "Apache-2.0" }, "node_modules/@prisma/fetch-engine": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-6.9.0.tgz", - "integrity": "sha512-PMKhJdl4fOdeE3J3NkcWZ+tf3W6rx3ht/rLU8w4SXFRcLhd5+3VcqY4Kslpdm8osca4ej3gTfB3+cSk5pGxgFg==", + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-6.10.1.tgz", + "integrity": "sha512-clmbG/Jgmrc/n6Y77QcBmAUlq9LrwI9Dbgy4pq5jeEARBpRCWJDJ7PWW1P8p0LfFU0i5fsyO7FqRzRB8mkdS4g==", "devOptional": true, "license": "Apache-2.0", "dependencies": { - "@prisma/debug": "6.9.0", - "@prisma/engines-version": "6.9.0-10.81e4af48011447c3cc503a190e86995b66d2a28e", - "@prisma/get-platform": "6.9.0" + "@prisma/debug": "6.10.1", + "@prisma/engines-version": "6.10.1-1.9b628578b3b7cae625e8c927178f15a170e74a9c", + "@prisma/get-platform": "6.10.1" } }, "node_modules/@prisma/get-platform": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-6.9.0.tgz", - "integrity": "sha512-/B4n+5V1LI/1JQcHp+sUpyRT1bBgZVPHbsC4lt4/19Xp4jvNIVcq5KYNtQDk5e/ukTSjo9PZVAxxy9ieFtlpTQ==", + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-6.10.1.tgz", + "integrity": "sha512-4CY5ndKylcsce9Mv+VWp5obbR2/86SHOLVV053pwIkhVtT9C9A83yqiqI/5kJM9T1v1u1qco/bYjDKycmei9HA==", "devOptional": true, "license": "Apache-2.0", "dependencies": { - "@prisma/debug": "6.9.0" + "@prisma/debug": "6.10.1" } }, "node_modules/@redis/client": { @@ -29285,15 +29285,15 @@ } }, "node_modules/prisma": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/prisma/-/prisma-6.9.0.tgz", - "integrity": "sha512-resJAwMyZREC/I40LF6FZ6rZTnlrlrYrb63oW37Gq+U+9xHwbyMSPJjKtM7VZf3gTO86t/Oyz+YeSXr3CmAY1Q==", + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/prisma/-/prisma-6.10.1.tgz", + "integrity": "sha512-khhlC/G49E4+uyA3T3H5PRBut486HD2bDqE2+rvkU0pwk9IAqGFacLFUyIx9Uw+W2eCtf6XGwsp+/strUwMNPw==", "devOptional": true, "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "@prisma/config": "6.9.0", - "@prisma/engines": "6.9.0" + "@prisma/config": "6.10.1", + "@prisma/engines": "6.10.1" }, "bin": { "prisma": "build/index.js" diff --git a/package.json b/package.json index 3503702df..521b29029 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ "@nestjs/platform-express": "11.1.3", "@nestjs/schedule": "6.0.0", "@nestjs/serve-static": "5.0.3", - "@prisma/client": "6.9.0", + "@prisma/client": "6.10.1", "@simplewebauthn/browser": "13.1.0", "@simplewebauthn/server": "13.1.1", "@stripe/stripe-js": "7.3.1", @@ -194,7 +194,7 @@ "nx": "21.1.2", "prettier": "3.5.3", "prettier-plugin-organize-attributes": "1.0.0", - "prisma": "6.9.0", + "prisma": "6.10.1", "react": "18.2.0", "react-dom": "18.2.0", "replace-in-file": "8.3.0", From 69371bd42f35c12d597fae47a49f3138a2a3254c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Jun 2025 19:50:12 +0200 Subject: [PATCH 37/56] Feature/update locales (#4993) * Update locales * Update translation --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- .../admin-settings.component.html | 2 +- apps/client/src/locales/messages.ca.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.de.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.es.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.fr.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.it.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.nl.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.pl.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.pt.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.tr.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.uk.xlf | 92 +++++++++++-------- apps/client/src/locales/messages.xlf | 84 ++++++++++------- apps/client/src/locales/messages.zh.xlf | 92 +++++++++++-------- 13 files changed, 644 insertions(+), 454 deletions(-) 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 f00b5bc88..0a301eb52 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 @@ -5,7 +5,7 @@ @if (isGhostfolioApiKeyValid === false) { - Ghostfolio Premium apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1879,7 +1879,7 @@ Plataformes apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -1887,7 +1887,7 @@ Etiquetes apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2514,8 +2514,8 @@ or o - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -5677,7 +5677,7 @@ Asset Profiles apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -6269,7 +6269,7 @@ Valid until apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6877,7 +6877,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6983,7 +6983,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6991,7 +6991,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -6999,7 +6999,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7007,7 +7007,7 @@ Do you really want to delete the API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7018,14 +7018,6 @@ 41 - - I have an API key - I have an API key - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today API Requests Today @@ -7142,8 +7134,8 @@ Please enter your Ghostfolio API key. Please enter your Ghostfolio API key. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7162,14 +7154,6 @@ 65 - - Early Access - Early Access - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Regional Market Cluster Risks @@ -7551,14 +7535,6 @@ 95 - - Get Early Access - Get Early Access - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Do you really want to delete this item? @@ -7766,6 +7742,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 2b0b38ec6..ddca33b23 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -146,7 +146,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -402,7 +402,7 @@ Anlageprofile apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -1085,8 +1085,8 @@ or oder - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1334,7 +1334,7 @@ Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3362,7 +3362,7 @@ Gültig bis apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3922,7 +3922,7 @@ Plattformen apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -6901,7 +6901,7 @@ API-Schlüssel setzen apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -7007,7 +7007,7 @@ von apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -7015,7 +7015,7 @@ täglichen Anfragen apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -7023,7 +7023,7 @@ API-Schlüssel löschen apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7031,7 +7031,7 @@ Möchtest du den API-Schlüssel wirklich löschen? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7042,14 +7042,6 @@ 41 - - I have an API key - Ich habe einen API-Schlüssel - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today Heutige API Anfragen @@ -7166,8 +7158,8 @@ Please enter your Ghostfolio API key. Bitte gebe deinen Ghostfolio API-Schlüssel ein. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7186,14 +7178,6 @@ 65 - - Early Access - Early Access - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Regionale Marktklumpenrisiken @@ -7551,14 +7535,6 @@ 95 - - Get Early Access - Early Access erhalten - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Möchtest du diesen Eintrag wirklich löschen? @@ -7766,6 +7742,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Erweitere dein selbst gehostetes Ghostfolio durch einen leistungsstarken Datenanbieter mit Zugriff auf über 80’000 Ticker von mehr als 50 Börsen weltweit. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Zugang erhalten + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Mehr erfahren + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + neu + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index afa18bee8..7ebc635e8 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -147,7 +147,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -403,7 +403,7 @@ Perfiles de activos. apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -1070,8 +1070,8 @@ or o - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1319,7 +1319,7 @@ Etiquetas apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3347,7 +3347,7 @@ Válido hasta apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3899,7 +3899,7 @@ Plataformas apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -6878,7 +6878,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6984,7 +6984,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6992,7 +6992,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -7000,7 +7000,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7008,7 +7008,7 @@ Do you really want to delete the API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7019,14 +7019,6 @@ 41 - - I have an API key - I have an API key - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today API Requests Today @@ -7143,8 +7135,8 @@ Please enter your Ghostfolio API key. Please enter your Ghostfolio API key. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7163,14 +7155,6 @@ 65 - - Early Access - Early Access - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Regional Market Cluster Risks @@ -7552,14 +7536,6 @@ 95 - - Get Early Access - Obtenga acceso temprano - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? ¿Realmente deseas eliminar este elemento? @@ -7767,6 +7743,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 91d9406b3..41b881c39 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -154,7 +154,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -458,7 +458,7 @@ Profils d’Actifs apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -922,7 +922,7 @@ Étiquettes apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1421,8 +1421,8 @@ or ou - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -3346,7 +3346,7 @@ Valide jusqu’au apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3898,7 +3898,7 @@ Platformes apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -6877,7 +6877,7 @@ Définir clé API apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6983,7 +6983,7 @@ sur apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6991,7 +6991,7 @@ requêtes journalières apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -6999,7 +6999,7 @@ Retirer la clé API apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7007,7 +7007,7 @@ Voulez-vous vraiment supprimer la clé API? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7018,14 +7018,6 @@ 41 - - I have an API key - J’ai une clé API - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today Requêtes API aujourd’hui @@ -7142,8 +7134,8 @@ Please enter your Ghostfolio API key. Veuillez saisir votre clé API Ghostfolio. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7162,14 +7154,6 @@ 65 - - Early Access - Accès anticipé - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Risques liés aux regroupements de marchés régionaux @@ -7551,14 +7535,6 @@ 95 - - Get Early Access - Obtenir un accès anticipé - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Voulez-vous vraiment supprimer cet élément? @@ -7766,6 +7742,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index e3f78753a..f335ccd3e 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -147,7 +147,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -403,7 +403,7 @@ Profilo dell’asset apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -1070,8 +1070,8 @@ or oppure - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1319,7 +1319,7 @@ Tag apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3347,7 +3347,7 @@ Valido fino a apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3899,7 +3899,7 @@ Piattaforme apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -6878,7 +6878,7 @@ Imposta API Key apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6984,7 +6984,7 @@ di apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6992,7 +6992,7 @@ richieste giornaliere apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -7000,7 +7000,7 @@ Rimuovi API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7008,7 +7008,7 @@ Vuoi davvero eliminare l’API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7019,14 +7019,6 @@ 41 - - I have an API key - Ho un API key - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today Richieste API oggi @@ -7143,8 +7135,8 @@ Please enter your Ghostfolio API key. Inserisci la tua API key di Ghostfolio. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7163,14 +7155,6 @@ 65 - - Early Access - Accesso anticipato - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Rischi del cluster di mercato regionale @@ -7552,14 +7536,6 @@ 95 - - Get Early Access - Ottieni accesso anticipato - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Vuoi davvero eliminare questo elemento? @@ -7767,6 +7743,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 958ccc4f7..a5b4aa732 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -146,7 +146,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -402,7 +402,7 @@ Activa Profiel apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -1069,8 +1069,8 @@ or of - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1318,7 +1318,7 @@ Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3346,7 +3346,7 @@ Geldig tot apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3898,7 +3898,7 @@ Platforms apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -6877,7 +6877,7 @@ API-sleutel instellen apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6983,7 +6983,7 @@ van apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6991,7 +6991,7 @@ dagelijkse verzoeken apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -6999,7 +6999,7 @@ Verwijder API-sleutel apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7007,7 +7007,7 @@ Wilt u de API-sleutel echt verwijderen? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7018,14 +7018,6 @@ 41 - - I have an API key - Ik heb een API-sleutel - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today Aantal API-Verzoeken Vandaag @@ -7142,8 +7134,8 @@ Please enter your Ghostfolio API key. Voer uw Ghostfolio API-sleutel in. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7162,14 +7154,6 @@ 65 - - Early Access - Vroege Toegang - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Regionale Markt Clusterrisico’s @@ -7551,14 +7535,6 @@ 95 - - Get Early Access - Krijg Vroegtijdige Toegang - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Wilt u dit item echt verwijderen? @@ -7766,6 +7742,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index 04cd0a9e9..3b3f85c36 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -679,7 +679,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1711,7 +1711,7 @@ Platformy apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -1719,7 +1719,7 @@ Tagi apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2174,8 +2174,8 @@ or lub - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -5152,7 +5152,7 @@ Profile aktywów apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -5680,7 +5680,7 @@ Ważność do apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6877,7 +6877,7 @@ Skonfiguruj klucz API apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6983,7 +6983,7 @@ z apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6991,7 +6991,7 @@ codzienne żądania apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -6999,7 +6999,7 @@ Usuń klucz API apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7007,7 +7007,7 @@ Czy na pewno chcesz usunąć klucz API?? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7018,14 +7018,6 @@ 41 - - I have an API key - Posiadam klucz API - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today Dzisiejsze Zapytania API @@ -7142,8 +7134,8 @@ Please enter your Ghostfolio API key. Wprowadź swój klucz API Ghostfolio. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7162,14 +7154,6 @@ 65 - - Early Access - Wczesny dostęp - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Ryzyka klastrów regionalnych rynków @@ -7551,14 +7535,6 @@ 95 - - Get Early Access - Uzyskaj wcześniejszy dostęp - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Czy na pewno chcesz usunąć ten element? @@ -7766,6 +7742,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 982426a93..e84e4ac9c 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -154,7 +154,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -458,7 +458,7 @@ Perfil de Ativos apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -1301,8 +1301,8 @@ or ou - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1622,7 +1622,7 @@ Marcadores apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3346,7 +3346,7 @@ Válido até apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3898,7 +3898,7 @@ Plataformas apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -6877,7 +6877,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6983,7 +6983,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6991,7 +6991,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -6999,7 +6999,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7007,7 +7007,7 @@ Do you really want to delete the API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7018,14 +7018,6 @@ 41 - - I have an API key - I have an API key - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today API Requests Today @@ -7142,8 +7134,8 @@ Please enter your Ghostfolio API key. Please enter your Ghostfolio API key. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7162,14 +7154,6 @@ 65 - - Early Access - Early Access - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Regional Market Cluster Risks @@ -7551,14 +7535,6 @@ 95 - - Get Early Access - Get Early Access - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Do you really want to delete this item? @@ -7766,6 +7742,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index b295bdef3..62317659a 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -639,7 +639,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -927,7 +927,7 @@ Varlık Profili apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -1451,7 +1451,7 @@ Etiketler apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1615,7 +1615,7 @@ Platformlar apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -2022,8 +2022,8 @@ or veya - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -4576,7 +4576,7 @@ Geçerli tarih apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6877,7 +6877,7 @@ API anahtarını ayarla apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6983,7 +6983,7 @@ ın apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6991,7 +6991,7 @@ günlük istekler apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -6999,7 +6999,7 @@ API anahtarını kaldır apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7007,7 +7007,7 @@ API anahtarını silmek istediğinize emin misiniz? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7018,14 +7018,6 @@ 41 - - I have an API key - Bir API anahtarım var - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today API Günü İstekleri @@ -7142,8 +7134,8 @@ Please enter your Ghostfolio API key. Lütfen Ghostfolio API anahtarınızı girin. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7162,14 +7154,6 @@ 65 - - Early Access - Erken Erişim - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Bölgesel Piyasa Küme Riskleri @@ -7551,14 +7535,6 @@ 95 - - Get Early Access - Erken Erişim - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Bu öğeyi silmek istediğinize emin misiniz? @@ -7766,6 +7742,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 074e344e5..6b580cda9 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -767,7 +767,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1875,7 +1875,7 @@ Дійсне до apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -1887,7 +1887,7 @@ з apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -1895,7 +1895,7 @@ щоденних запитів apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -1903,7 +1903,7 @@ Вилучити ключ API apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -1911,7 +1911,7 @@ Встановити ключ API apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -1919,7 +1919,7 @@ Платформи apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -1927,7 +1927,7 @@ Теги apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1943,23 +1943,23 @@ Ви дійсно хочете видалити ключ API? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 Please enter your Ghostfolio API key. Будь ласка, введіть ваш ключ API Ghostfolio. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 or або - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1986,14 +1986,6 @@ 30 - - I have an API key - У мене є ключ API - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - Add Tag Додати тег @@ -6299,7 +6291,7 @@ Профілі активів apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -7162,14 +7154,6 @@ 173 - - Early Access - Ранній доступ - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks Regional Market Cluster Risks @@ -7551,14 +7535,6 @@ 95 - - Get Early Access - Get Early Access - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? Do you really want to delete this item? @@ -7766,6 +7742,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 4daa5a3e3..e950272ef 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -651,7 +651,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1629,14 +1629,14 @@ Platforms apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2044,8 +2044,8 @@ or - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -4738,7 +4738,7 @@ Asset Profiles apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -5216,7 +5216,7 @@ Valid until apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6220,7 +6220,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6322,35 +6322,28 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 Do you really want to delete the API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 - - - - I have an API key - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 + 88 Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -6454,8 +6447,8 @@ Please enter your Ghostfolio API key. - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -6472,13 +6465,6 @@ 65 - - Early Access - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks @@ -6793,13 +6779,6 @@ 197 - - Get Early Access - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? @@ -6983,6 +6962,41 @@ 292 + + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + + + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index 7a8978e3e..e8c1dcd93 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -688,7 +688,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 8 + 44 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1720,7 +1720,7 @@ 平台 apps/client/src/app/components/admin-settings/admin-settings.component.html - 140 + 178 @@ -1728,7 +1728,7 @@ 标签 apps/client/src/app/components/admin-settings/admin-settings.component.html - 146 + 184 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2183,8 +2183,8 @@ or - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 32 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 29 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -5193,7 +5193,7 @@ 资产概况 apps/client/src/app/components/admin-settings/admin-settings.component.html - 52 + 90 @@ -5737,7 +5737,7 @@ 有效期至 apps/client/src/app/components/admin-settings/admin-settings.component.html - 34 + 72 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6878,7 +6878,7 @@ 设置 API 密钥 apps/client/src/app/components/admin-settings/admin-settings.component.html - 116 + 154 @@ -6984,7 +6984,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 79 + 117 @@ -6992,7 +6992,7 @@ 每日请求 apps/client/src/app/components/admin-settings/admin-settings.component.html - 81 + 119 @@ -7000,7 +7000,7 @@ 移除 API 密钥 apps/client/src/app/components/admin-settings/admin-settings.component.html - 106 + 144 @@ -7008,7 +7008,7 @@ 您确定要删除此 API 密钥吗? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 98 + 88 @@ -7019,14 +7019,6 @@ 41 - - I have an API key - 我有一个 API 密钥 - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 39 - - API Requests Today 今日 API 请求数 @@ -7143,8 +7135,8 @@ Please enter your Ghostfolio API key. 请输入您的 Ghostfolio API 密钥。 - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.component.ts - 57 + apps/client/src/app/components/admin-settings/admin-settings.component.ts + 107 @@ -7163,14 +7155,6 @@ 65 - - Early Access - 抢先体验 - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 27 - - Regional Market Cluster Risks 区域市场集群风险 @@ -7552,14 +7536,6 @@ 95 - - Get Early Access - 获取抢先体验 - - apps/client/src/app/components/admin-settings/ghostfolio-premium-api-dialog/ghostfolio-premium-api-dialog.html - 29 - - Do you really want to delete this item? 您确定要删除此项目吗? @@ -7767,6 +7743,46 @@ 292 + + Ghostfolio Premium + Ghostfolio Premium + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 9 + + + + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 15 + + + + Get Access + Get Access + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 27 + + + + Learn more + Learn more + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 36 + + + + new + new + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 65 + + From f5aae11a4c7a7e36ef5efdd77aa8b17402503de5 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 21 Jun 2025 19:52:15 +0200 Subject: [PATCH 38/56] Release 2.173.0 (#4994) --- CHANGELOG.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ca95a697..9eab6aab0 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). -## Unreleased +## 2.173.0 - 2025-06-21 ### Added diff --git a/package-lock.json b/package-lock.json index d9f4dd47c..529e7082d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ghostfolio", - "version": "2.172.0", + "version": "2.173.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ghostfolio", - "version": "2.172.0", + "version": "2.173.0", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/package.json b/package.json index 521b29029..b340fc6ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.172.0", + "version": "2.173.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio", From 3c427a00054c4cf46a164521e4f225405c8c2517 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Jun 2025 19:54:15 +0200 Subject: [PATCH 39/56] Feature/update locales (#4995) Co-authored-by: github-actions[bot] --- apps/client/src/locales/messages.ca.xlf | 8 -------- apps/client/src/locales/messages.de.xlf | 8 -------- apps/client/src/locales/messages.es.xlf | 8 -------- apps/client/src/locales/messages.fr.xlf | 8 -------- apps/client/src/locales/messages.it.xlf | 8 -------- apps/client/src/locales/messages.nl.xlf | 8 -------- apps/client/src/locales/messages.pl.xlf | 8 -------- apps/client/src/locales/messages.pt.xlf | 8 -------- apps/client/src/locales/messages.tr.xlf | 8 -------- apps/client/src/locales/messages.uk.xlf | 8 -------- apps/client/src/locales/messages.xlf | 7 ------- apps/client/src/locales/messages.zh.xlf | 8 -------- 12 files changed, 95 deletions(-) diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 58dd79fdf..18b481779 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -7742,14 +7742,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index ddca33b23..bb0a07f5c 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -7742,14 +7742,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Erweitere dein selbst gehostetes Ghostfolio durch einen leistungsstarken Datenanbieter mit Zugriff auf über 80’000 Ticker von mehr als 50 Börsen weltweit. diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 7ebc635e8..655da3728 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -7743,14 +7743,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 41b881c39..8e4eb3db6 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -7742,14 +7742,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index f335ccd3e..148342e8e 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -7743,14 +7743,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index a5b4aa732..3aec14a85 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -7742,14 +7742,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index 3b3f85c36..dfcf57912 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -7742,14 +7742,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index e84e4ac9c..a4950debb 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -7742,14 +7742,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 62317659a..69977793e 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -7742,14 +7742,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 6b580cda9..c40d59342 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -7742,14 +7742,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index e950272ef..cd0893441 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -6976,13 +6976,6 @@ 65 - - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index e8c1dcd93..e03c46884 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -7743,14 +7743,6 @@ 292 - - Ghostfolio Premium - Ghostfolio Premium - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 9 - - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. From 39fbb3a27c2790056023f30860e925ee76f2a722 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Jun 2025 20:10:23 +0200 Subject: [PATCH 40/56] Feature/update locales (#4996) Co-authored-by: github-actions[bot] From 4964a8675b606a0f96a815f886ad0dc2bc66fbc2 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 22 Jun 2025 19:50:01 +0200 Subject: [PATCH 41/56] Feature/improve localization on pricing page (#5003) * Improve localization --- apps/client/src/app/pages/pricing/pricing-page.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/client/src/app/pages/pricing/pricing-page.html b/apps/client/src/app/pages/pricing/pricing-page.html index 91d2331c2..6187df54a 100644 --- a/apps/client/src/app/pages/pricing/pricing-page.html +++ b/apps/client/src/app/pages/pricing/pricing-page.html @@ -306,8 +306,10 @@ @if (durationExtension) {
    - Limited Offer! Get - {{ durationExtension }} extra + Limited Offer! + Get {{ durationExtension }} extra
    } From 9bd7f795ac8b9fc81d785a54f818fadf5337acfa Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 22 Jun 2025 19:52:34 +0200 Subject: [PATCH 42/56] Feature/improve line height on pricing page (#5002) * Improve line height --- apps/client/src/app/pages/pricing/pricing-page.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/client/src/app/pages/pricing/pricing-page.html b/apps/client/src/app/pages/pricing/pricing-page.html index 6187df54a..c13766b75 100644 --- a/apps/client/src/app/pages/pricing/pricing-page.html +++ b/apps/client/src/app/pages/pricing/pricing-page.html @@ -305,7 +305,9 @@ } @if (durationExtension) {
    -
    +
    Limited Offer! Get {{ durationExtension }} extra Date: Sun, 22 Jun 2025 20:14:15 +0200 Subject: [PATCH 43/56] Feature/update locales (#5004) * Update locales * Update translations --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- apps/client/src/locales/messages.ca.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.de.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.es.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.fr.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.it.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.nl.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.pl.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.pt.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.tr.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.uk.xlf | 20 ++++++++++++++++++-- apps/client/src/locales/messages.xlf | 18 ++++++++++++++++-- apps/client/src/locales/messages.zh.xlf | 20 ++++++++++++++++++-- 12 files changed, 214 insertions(+), 24 deletions(-) diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 18b481779..3eef5da70 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -3832,7 +3832,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -5040,7 +5040,7 @@ It’s free. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -7774,6 +7774,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index bb0a07f5c..59ecb236e 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -3670,7 +3670,7 @@ Es ist kostenlos. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -4846,7 +4846,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -7774,6 +7774,22 @@ 65 + + Limited Offer! + Begrenztes Angebot! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Erhalte extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 655da3728..3135814fb 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -3655,7 +3655,7 @@ Es gratis. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -4823,7 +4823,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -7775,6 +7775,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 8e4eb3db6..7737220a6 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -3654,7 +3654,7 @@ C’est gratuit. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -4822,7 +4822,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -7774,6 +7774,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 148342e8e..b88b49b5a 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -3655,7 +3655,7 @@ È gratuito. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -4823,7 +4823,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -7775,6 +7775,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 3aec14a85..121f96242 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -3654,7 +3654,7 @@ Het is gratis. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -4822,7 +4822,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -7774,6 +7774,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index dfcf57912..e9c642b2c 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -3467,7 +3467,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -4627,7 +4627,7 @@ Jest bezpłatny. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -7774,6 +7774,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index a4950debb..0672b1567 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -3654,7 +3654,7 @@ É gratuito. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -4822,7 +4822,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -7774,6 +7774,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 69977793e..94dd70e54 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -2999,7 +2999,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -4099,7 +4099,7 @@ Ücretsiz. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -7774,6 +7774,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index c40d59342..966cdf70f 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -4040,7 +4040,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -5332,7 +5332,7 @@ Це безкоштовно. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -7774,6 +7774,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index cd0893441..f3f46883c 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -3206,7 +3206,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -4239,7 +4239,7 @@ It’s free. apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -6990,6 +6990,20 @@ 36 + + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index e03c46884..b6cee7ffb 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -3476,7 +3476,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 345 + 349 @@ -4636,7 +4636,7 @@ 免费。 apps/client/src/app/pages/pricing/pricing-page.html - 348 + 352 @@ -7775,6 +7775,22 @@ 65 + + Limited Offer! + Limited Offer! + + apps/client/src/app/pages/pricing/pricing-page.html + 311 + + + + Get extra + Get extra + + apps/client/src/app/pages/pricing/pricing-page.html + 313 + + From f33d902560a50a287979c5e7bc04fbc4a243aadd Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 22 Jun 2025 20:15:51 +0200 Subject: [PATCH 44/56] Feature/migrate value component to control flow (part 2) (#5000) * Migrate to control flow * Update changelog --- CHANGELOG.md | 6 ++++++ libs/ui/src/lib/value/value.component.html | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eab6aab0..275871fd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## Unreleased + +### Changed + +- Migrated the `@ghostfolio/ui/value` component to control flow + ## 2.173.0 - 2025-06-21 ### Added diff --git a/libs/ui/src/lib/value/value.component.html b/libs/ui/src/lib/value/value.component.html index 8c9fa7e16..1f61f30e5 100644 --- a/libs/ui/src/lib/value/value.component.html +++ b/libs/ui/src/lib/value/value.component.html @@ -5,7 +5,7 @@ }
    - + @if (value || value === 0 || value === null) {
    }
    -
    + } @if (value === undefined) { Date: Sun, 22 Jun 2025 20:17:51 +0200 Subject: [PATCH 45/56] Feature/refactor health check endpoints (#5005) * Refactor health check endpoints * Update changelog --- CHANGELOG.md | 2 + apps/api/src/app/health/health.controller.ts | 40 +++++++++++++------ libs/common/src/lib/interfaces/index.ts | 4 ++ ...data-enhancer-health-response.interface.ts | 3 ++ ...data-provider-health-response.interface.ts | 3 ++ 5 files changed, 39 insertions(+), 13 deletions(-) create mode 100644 libs/common/src/lib/interfaces/responses/data-enhancer-health-response.interface.ts create mode 100644 libs/common/src/lib/interfaces/responses/data-provider-health-response.interface.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index 275871fd9..d87d850dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Migrated the `@ghostfolio/ui/value` component to control flow +- Refactored the health check endpoint for data enhancers +- Refactored the health check endpoint for data providers ## 2.173.0 - 2025-06-21 diff --git a/apps/api/src/app/health/health.controller.ts b/apps/api/src/app/health/health.controller.ts index 6ff09825b..5542ae933 100644 --- a/apps/api/src/app/health/health.controller.ts +++ b/apps/api/src/app/health/health.controller.ts @@ -1,4 +1,8 @@ import { TransformDataSourceInRequestInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.interceptor'; +import { + DataEnhancerHealthResponse, + DataProviderHealthResponse +} from '@ghostfolio/common/interfaces'; import { Controller, @@ -37,23 +41,30 @@ export class HealthController { } @Get('data-enhancer/:name') - public async getHealthOfDataEnhancer(@Param('name') name: string) { + public async getHealthOfDataEnhancer( + @Param('name') name: string, + @Res() response: Response + ): Promise> { const hasResponse = await this.healthService.hasResponseFromDataEnhancer(name); - if (hasResponse !== true) { - throw new HttpException( - getReasonPhrase(StatusCodes.SERVICE_UNAVAILABLE), - StatusCodes.SERVICE_UNAVAILABLE - ); + if (hasResponse) { + return response.status(HttpStatus.OK).json({ + status: getReasonPhrase(StatusCodes.OK) + }); + } else { + return response + .status(HttpStatus.SERVICE_UNAVAILABLE) + .json({ status: getReasonPhrase(StatusCodes.SERVICE_UNAVAILABLE) }); } } @Get('data-provider/:dataSource') @UseInterceptors(TransformDataSourceInRequestInterceptor) public async getHealthOfDataProvider( - @Param('dataSource') dataSource: DataSource - ) { + @Param('dataSource') dataSource: DataSource, + @Res() response: Response + ): Promise> { if (!DataSource[dataSource]) { throw new HttpException( getReasonPhrase(StatusCodes.NOT_FOUND), @@ -64,11 +75,14 @@ export class HealthController { const hasResponse = await this.healthService.hasResponseFromDataProvider(dataSource); - if (hasResponse !== true) { - throw new HttpException( - getReasonPhrase(StatusCodes.SERVICE_UNAVAILABLE), - StatusCodes.SERVICE_UNAVAILABLE - ); + if (hasResponse) { + return response + .status(HttpStatus.OK) + .json({ status: getReasonPhrase(StatusCodes.OK) }); + } else { + return response + .status(HttpStatus.SERVICE_UNAVAILABLE) + .json({ status: getReasonPhrase(StatusCodes.SERVICE_UNAVAILABLE) }); } } } diff --git a/libs/common/src/lib/interfaces/index.ts b/libs/common/src/lib/interfaces/index.ts index e401705fb..e7a0e7f76 100644 --- a/libs/common/src/lib/interfaces/index.ts +++ b/libs/common/src/lib/interfaces/index.ts @@ -41,8 +41,10 @@ import type { AccountsResponse } from './responses/accounts-response.interface'; import type { AiPromptResponse } from './responses/ai-prompt-response.interface'; import type { ApiKeyResponse } from './responses/api-key-response.interface'; import type { BenchmarkResponse } from './responses/benchmark-response.interface'; +import type { DataEnhancerHealthResponse } from './responses/data-enhancer-health-response.interface'; import type { DataProviderGhostfolioAssetProfileResponse } from './responses/data-provider-ghostfolio-asset-profile-response.interface'; import type { DataProviderGhostfolioStatusResponse } from './responses/data-provider-ghostfolio-status-response.interface'; +import type { DataProviderHealthResponse } from './responses/data-provider-health-response.interface'; import type { DividendsResponse } from './responses/dividends-response.interface'; import type { ResponseError } from './responses/errors.interface'; import type { HistoricalResponse } from './responses/historical-response.interface'; @@ -88,8 +90,10 @@ export { BenchmarkProperty, BenchmarkResponse, Coupon, + DataEnhancerHealthResponse, DataProviderGhostfolioAssetProfileResponse, DataProviderGhostfolioStatusResponse, + DataProviderHealthResponse, DataProviderInfo, DividendsResponse, EnhancedSymbolProfile, diff --git a/libs/common/src/lib/interfaces/responses/data-enhancer-health-response.interface.ts b/libs/common/src/lib/interfaces/responses/data-enhancer-health-response.interface.ts new file mode 100644 index 000000000..025f8e8be --- /dev/null +++ b/libs/common/src/lib/interfaces/responses/data-enhancer-health-response.interface.ts @@ -0,0 +1,3 @@ +export interface DataEnhancerHealthResponse { + status: string; +} diff --git a/libs/common/src/lib/interfaces/responses/data-provider-health-response.interface.ts b/libs/common/src/lib/interfaces/responses/data-provider-health-response.interface.ts new file mode 100644 index 000000000..a32d9b3c3 --- /dev/null +++ b/libs/common/src/lib/interfaces/responses/data-provider-health-response.interface.ts @@ -0,0 +1,3 @@ +export interface DataProviderHealthResponse { + status: string; +} From b6854f30e1d8ad21490d5fe01ff68ac53f896281 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Mon, 23 Jun 2025 20:12:46 +0700 Subject: [PATCH 46/56] Feature/add status column to data providers table (#4998) * Add status column to data providers table * Update changelog --- CHANGELOG.md | 4 ++ .../admin-settings.component.html | 69 +++++++++++-------- .../admin-settings.component.ts | 8 ++- .../admin-settings/admin-settings.module.ts | 2 + .../data-provider-status.component.html | 15 ++++ .../data-provider-status.component.ts | 51 ++++++++++++++ .../interfaces/interfaces.ts | 3 + apps/client/src/app/services/data.service.ts | 7 ++ 8 files changed, 131 insertions(+), 28 deletions(-) create mode 100644 apps/client/src/app/components/data-provider-status/data-provider-status.component.html create mode 100644 apps/client/src/app/components/data-provider-status/data-provider-status.component.ts create mode 100644 apps/client/src/app/components/data-provider-status/interfaces/interfaces.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index d87d850dc..402dab7a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Extended the data providers management of the admin control panel by the online status + ### Changed - Migrated the `@ghostfolio/ui/value` component to control flow 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 0a301eb52..d50fa92c3 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 @@ -40,10 +40,10 @@ } - - + + + + + - - - + - + -
    + Name +
    @@ -85,11 +85,25 @@
    + Status + + @if ( + !isGhostfolioDataProvider(element) || + isGhostfolioApiKeyValid === true + ) { + + } + + Asset Profiles + - - - @if (isGhostfolioDataProvider(element)) { - @if (isGhostfolioApiKeyValid === true) { - - - {{ ghostfolioApiStatus.dailyRequests }} - of - {{ ghostfolioApiStatus.dailyRequestsMax }} - daily requests - - } + + + @if ( + isGhostfolioDataProvider(element) && + isGhostfolioApiKeyValid === true + ) { + + + {{ ghostfolioApiStatus.dailyRequests }} + of + {{ ghostfolioApiStatus.dailyRequestsMax }} + daily requests + } + @if (isGhostfolioDataProvider(element)) { @if (isGhostfolioApiKeyValid === true) { - @if (element.Platform?.url) { + @if (element.platform?.url) { } {{ element.name }} @@ -81,7 +81,7 @@ *matHeaderCellDef class="d-none d-lg-table-cell px-1" mat-header-cell - mat-sort-header="Platform.name" + mat-sort-header="platform.name" > Platform @@ -91,14 +91,14 @@ mat-cell >
    - @if (element.Platform?.url) { + @if (element.platform?.url) { } - {{ element.Platform?.name }} + {{ element.platform?.name }}
    - @if (account.Platform?.url) { + @if (account.platform?.url) { } {{ account.name }} @@ -34,11 +34,11 @@ @for (account of accounts; track account) {
    - @if (account.Platform?.url) { + @if (account.platform?.url) { } {{ account.name }} diff --git a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html index 6392456b5..b0185dc72 100644 --- a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html +++ b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -93,11 +93,11 @@ @for (account of data.accounts; track account) {
    - @if (account.Platform?.url) { + @if (account.platform?.url) { } {{ account.name }} diff --git a/libs/common/src/lib/types/account-with-platform.type.ts b/libs/common/src/lib/types/account-with-platform.type.ts index b0730abce..fbaa47393 100644 --- a/libs/common/src/lib/types/account-with-platform.type.ts +++ b/libs/common/src/lib/types/account-with-platform.type.ts @@ -1,3 +1,3 @@ import { Account, Platform } from '@prisma/client'; -export type AccountWithPlatform = Account & { Platform?: Platform }; +export type AccountWithPlatform = Account & { platform?: Platform }; diff --git a/libs/common/src/lib/types/account-with-value.type.ts b/libs/common/src/lib/types/account-with-value.type.ts index bc7577d91..40aefa998 100644 --- a/libs/common/src/lib/types/account-with-value.type.ts +++ b/libs/common/src/lib/types/account-with-value.type.ts @@ -2,7 +2,7 @@ import { Account as AccountModel, Platform } from '@prisma/client'; export type AccountWithValue = AccountModel & { balanceInBaseCurrency: number; - Platform?: Platform; + platform?: Platform; transactionCount: number; value: number; valueInBaseCurrency: number; diff --git a/libs/ui/src/lib/activities-table/activities-table.component.html b/libs/ui/src/lib/activities-table/activities-table.component.html index a0607789a..b50e32ca3 100644 --- a/libs/ui/src/lib/activities-table/activities-table.component.html +++ b/libs/ui/src/lib/activities-table/activities-table.component.html @@ -309,11 +309,11 @@
    - @if (element.Account?.Platform?.url) { + @if (element.Account?.platform?.url) { } {{ element.Account?.name }} diff --git a/libs/ui/src/lib/assistant/assistant.html b/libs/ui/src/lib/assistant/assistant.html index 87b9a9c61..40af9b98f 100644 --- a/libs/ui/src/lib/assistant/assistant.html +++ b/libs/ui/src/lib/assistant/assistant.html @@ -149,11 +149,11 @@ @for (account of accounts; track account.id) {
    - @if (account.Platform?.url) { + @if (account.platform?.url) { } {{ account.name }} diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 5f95c1e84..f1950569d 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -35,11 +35,11 @@ model Account { id String @default(uuid()) isExcluded Boolean @default(false) name String? + platform Platform? @relation(fields: [platformId], references: [id]) platformId String? updatedAt DateTime @updatedAt user User @relation(fields: [userId], onDelete: Cascade, references: [id]) userId String - Platform Platform? @relation(fields: [platformId], references: [id]) @@id([id, userId]) @@index([currency]) From 99cab25fe0da1425cd1eb0a0f54da47d2fc593f2 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 23 Jun 2025 17:38:49 +0200 Subject: [PATCH 48/56] Feature/improve labels in data provider status component (#5008) * Improve labels --- .../data-provider-status/data-provider-status.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/app/components/data-provider-status/data-provider-status.component.html b/apps/client/src/app/components/data-provider-status/data-provider-status.component.html index d2f26b09b..4f57cb8ee 100644 --- a/apps/client/src/app/components/data-provider-status/data-provider-status.component.html +++ b/apps/client/src/app/components/data-provider-status/data-provider-status.component.html @@ -1,8 +1,8 @@ @if (status$ | async; as status) { @if (status.isHealthy) { - Online + Available } @else { - Offline + Unavailable } } @else { Date: Mon, 23 Jun 2025 21:18:55 +0200 Subject: [PATCH 49/56] Feature/update locales (#5007) * Update locales * Update translations * Update changelog --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- CHANGELOG.md | 1 + apps/client/src/locales/messages.ca.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.de.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.es.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.fr.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.it.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.nl.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.pl.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.pt.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.tr.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.uk.xlf | 38 +++++++++++++++++++------ apps/client/src/locales/messages.xlf | 36 +++++++++++++++++------ apps/client/src/locales/messages.zh.xlf | 38 +++++++++++++++++++------ 13 files changed, 347 insertions(+), 108 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16e2301bb..6c8a6b635 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Renamed `Platform` to `platform` in the `Account` database schema - Refactored the health check endpoint for data enhancers - Refactored the health check endpoint for data providers +- Improved the language localization for German (`de`) ## 2.173.0 - 2025-06-21 diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 3eef5da70..e7694e285 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -1073,6 +1073,10 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Delete Jobs @@ -1879,7 +1883,7 @@ Plataformes apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -1887,7 +1891,7 @@ Etiquetes apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -5677,7 +5681,7 @@ Asset Profiles apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -6877,7 +6881,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6983,7 +6987,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6991,7 +6995,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -6999,7 +7003,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7007,7 +7011,7 @@ Do you really want to delete the API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7135,7 +7139,7 @@ Please enter your Ghostfolio API key. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7790,6 +7794,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 59ecb236e..214f4be5b 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -396,13 +396,17 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Asset Profiles Anlageprofile apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -1334,7 +1338,7 @@ Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3922,7 +3926,7 @@ Plattformen apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -6901,7 +6905,7 @@ API-Schlüssel setzen apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -7007,7 +7011,7 @@ von apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -7015,7 +7019,7 @@ täglichen Anfragen apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -7023,7 +7027,7 @@ API-Schlüssel löschen apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7031,7 +7035,7 @@ Möchtest du den API-Schlüssel wirklich löschen? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7159,7 +7163,7 @@ Bitte gebe deinen Ghostfolio API-Schlüssel ein. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7790,6 +7794,22 @@ 313 + + Available + Verfügbar + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Nicht verfügbar + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 3135814fb..6faddefd3 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -397,13 +397,17 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Asset Profiles Perfiles de activos. apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -1319,7 +1323,7 @@ Etiquetas apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3899,7 +3903,7 @@ Plataformas apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -6878,7 +6882,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6984,7 +6988,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6992,7 +6996,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -7000,7 +7004,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7008,7 +7012,7 @@ Do you really want to delete the API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7136,7 +7140,7 @@ Please enter your Ghostfolio API key. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7791,6 +7795,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 7737220a6..ed62a2046 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -444,6 +444,10 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Delete Jobs @@ -458,7 +462,7 @@ Profils d’Actifs apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -922,7 +926,7 @@ Étiquettes apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3898,7 +3902,7 @@ Platformes apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -6877,7 +6881,7 @@ Définir clé API apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6983,7 +6987,7 @@ sur apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6991,7 +6995,7 @@ requêtes journalières apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -6999,7 +7003,7 @@ Retirer la clé API apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7007,7 +7011,7 @@ Voulez-vous vraiment supprimer la clé API? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7135,7 +7139,7 @@ Veuillez saisir votre clé API Ghostfolio. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7790,6 +7794,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index b88b49b5a..8e5770c83 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -397,13 +397,17 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Asset Profiles Profilo dell’asset apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -1319,7 +1323,7 @@ Tag apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3899,7 +3903,7 @@ Piattaforme apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -6878,7 +6882,7 @@ Imposta API Key apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6984,7 +6988,7 @@ di apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6992,7 +6996,7 @@ richieste giornaliere apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -7000,7 +7004,7 @@ Rimuovi API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7008,7 +7012,7 @@ Vuoi davvero eliminare l’API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7136,7 +7140,7 @@ Inserisci la tua API key di Ghostfolio. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7791,6 +7795,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 121f96242..e6c128ad1 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -396,13 +396,17 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Asset Profiles Activa Profiel apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -1318,7 +1322,7 @@ Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3898,7 +3902,7 @@ Platforms apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -6877,7 +6881,7 @@ API-sleutel instellen apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6983,7 +6987,7 @@ van apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6991,7 +6995,7 @@ dagelijkse verzoeken apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -6999,7 +7003,7 @@ Verwijder API-sleutel apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7007,7 +7011,7 @@ Wilt u de API-sleutel echt verwijderen? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7135,7 +7139,7 @@ Voer uw Ghostfolio API-sleutel in. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7790,6 +7794,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index e9c642b2c..1a889695c 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -973,6 +973,10 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Delete Jobs @@ -1711,7 +1715,7 @@ Platformy apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -1719,7 +1723,7 @@ Tagi apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -5152,7 +5156,7 @@ Profile aktywów apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -6877,7 +6881,7 @@ Skonfiguruj klucz API apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6983,7 +6987,7 @@ z apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6991,7 +6995,7 @@ codzienne żądania apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -6999,7 +7003,7 @@ Usuń klucz API apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7007,7 +7011,7 @@ Czy na pewno chcesz usunąć klucz API?? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7135,7 +7139,7 @@ Wprowadź swój klucz API Ghostfolio. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7790,6 +7794,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 0672b1567..080c10d16 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -444,6 +444,10 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Delete Jobs @@ -458,7 +462,7 @@ Perfil de Ativos apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -1622,7 +1626,7 @@ Marcadores apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3898,7 +3902,7 @@ Plataformas apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -6877,7 +6881,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6983,7 +6987,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6991,7 +6995,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -6999,7 +7003,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7007,7 +7011,7 @@ Do you really want to delete the API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7135,7 +7139,7 @@ Please enter your Ghostfolio API key. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7790,6 +7794,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 94dd70e54..f7aa11996 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -913,6 +913,10 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Delete Jobs @@ -927,7 +931,7 @@ Varlık Profili apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -1451,7 +1455,7 @@ Etiketler apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1615,7 +1619,7 @@ Platformlar apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -6877,7 +6881,7 @@ API anahtarını ayarla apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6983,7 +6987,7 @@ ın apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6991,7 +6995,7 @@ günlük istekler apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -6999,7 +7003,7 @@ API anahtarını kaldır apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7007,7 +7011,7 @@ API anahtarını silmek istediğinize emin misiniz? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7135,7 +7139,7 @@ Lütfen Ghostfolio API anahtarınızı girin. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7790,6 +7794,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 966cdf70f..162ec6fa6 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -1097,6 +1097,10 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Delete Jobs @@ -1887,7 +1891,7 @@ з apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -1895,7 +1899,7 @@ щоденних запитів apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -1903,7 +1907,7 @@ Вилучити ключ API apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -1911,7 +1915,7 @@ Встановити ключ API apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -1919,7 +1923,7 @@ Платформи apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -1927,7 +1931,7 @@ Теги apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1943,7 +1947,7 @@ Ви дійсно хочете видалити ключ API? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -1951,7 +1955,7 @@ Будь ласка, введіть ваш ключ API Ghostfolio. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -6291,7 +6295,7 @@ Профілі активів apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -7790,6 +7794,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index f3f46883c..148c23605 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -931,6 +931,10 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Delete Jobs @@ -1629,14 +1633,14 @@ Platforms apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -4738,7 +4742,7 @@ Asset Profiles apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -6220,7 +6224,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6322,28 +6326,28 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 Do you really want to delete the API key? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -6448,7 +6452,7 @@ Please enter your Ghostfolio API key. apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7004,6 +7008,20 @@ 313 + + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + + + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index b6cee7ffb..6ba025490 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -982,6 +982,10 @@ apps/client/src/app/components/admin-jobs/admin-jobs.html 110 + + apps/client/src/app/components/admin-settings/admin-settings.component.html + 90 + Delete Jobs @@ -1720,7 +1724,7 @@ 平台 apps/client/src/app/components/admin-settings/admin-settings.component.html - 178 + 193 @@ -1728,7 +1732,7 @@ 标签 apps/client/src/app/components/admin-settings/admin-settings.component.html - 184 + 199 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -5193,7 +5197,7 @@ 资产概况 apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 104 @@ -6878,7 +6882,7 @@ 设置 API 密钥 apps/client/src/app/components/admin-settings/admin-settings.component.html - 154 + 169 @@ -6984,7 +6988,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 117 + 133 @@ -6992,7 +6996,7 @@ 每日请求 apps/client/src/app/components/admin-settings/admin-settings.component.html - 119 + 135 @@ -7000,7 +7004,7 @@ 移除 API 密钥 apps/client/src/app/components/admin-settings/admin-settings.component.html - 144 + 159 @@ -7008,7 +7012,7 @@ 您确定要删除此 API 密钥吗? apps/client/src/app/components/admin-settings/admin-settings.component.ts - 88 + 94 @@ -7136,7 +7140,7 @@ 请输入您的 Ghostfolio API 密钥。 apps/client/src/app/components/admin-settings/admin-settings.component.ts - 107 + 113 @@ -7791,6 +7795,22 @@ 313 + + Available + Available + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 3 + + + + Unavailable + Unavailable + + apps/client/src/app/components/data-provider-status/data-provider-status.component.html + 5 + + From 0334eabdadbb3fb91cca13b93ae81bbc0f284c13 Mon Sep 17 00:00:00 2001 From: jlebutte Date: Tue, 24 Jun 2025 18:57:35 +0200 Subject: [PATCH 50/56] Feature/improve language localization for FR 20250624 (#5015) * Improve language localization for FR * Update changelog --- CHANGELOG.md | 1 + apps/client/src/locales/messages.fr.xlf | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c8a6b635..ccb0b36f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Renamed `Platform` to `platform` in the `Account` database schema - Refactored the health check endpoint for data enhancers - Refactored the health check endpoint for data providers +- Improved the language localization for French (`fr`) - Improved the language localization for German (`de`) ## 2.173.0 - 2025-06-21 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index ed62a2046..d7d90414b 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -7714,7 +7714,7 @@ Holdings - Holdings + Positions libs/ui/src/lib/assistant/assistant.html 68 @@ -7722,7 +7722,7 @@ personal-finance-tools - personal-finance-tools + outils-finance-personnelle kebab-case libs/common/src/lib/routes/routes.ts @@ -7735,7 +7735,7 @@ markets - markets + marches kebab-case libs/common/src/lib/routes/routes.ts @@ -7748,7 +7748,7 @@ Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. - Fuel your self-hosted Ghostfolio with a powerful data provider to access 80,000+ tickers from over 50 exchanges worldwide. + Alimentez votre Ghostfolio auto-hébergé avec un fournisseur de données puissant pour accéder à plus de 80 000 tickers issus de plus de 50 bourses dans le monde entier. apps/client/src/app/components/admin-settings/admin-settings.component.html 15 @@ -7756,7 +7756,7 @@ Get Access - Get Access + Obtenir l’accès apps/client/src/app/components/admin-settings/admin-settings.component.html 27 @@ -7764,7 +7764,7 @@ Learn more - Learn more + En savoir plus apps/client/src/app/components/admin-settings/admin-settings.component.html 36 @@ -7772,7 +7772,7 @@ new - new + nouveau apps/client/src/app/components/admin-settings/admin-settings.component.html 65 @@ -7780,7 +7780,7 @@ Limited Offer! - Limited Offer! + Offre Limitée ! apps/client/src/app/pages/pricing/pricing-page.html 311 @@ -7788,7 +7788,7 @@ Get extra - Get extra + Obtenez supplémentaires apps/client/src/app/pages/pricing/pricing-page.html 313 @@ -7796,7 +7796,7 @@ Available - Available + Disponible apps/client/src/app/components/data-provider-status/data-provider-status.component.html 3 @@ -7804,7 +7804,7 @@ Unavailable - Unavailable + Indisponible apps/client/src/app/components/data-provider-status/data-provider-status.component.html 5 From 24f1aeb4c617ecefa22c0fd6f6fbdd8ebf13320c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 24 Jun 2025 18:58:49 +0200 Subject: [PATCH 51/56] Feature/refresh cryptocurrencies list 20250624 (#5013) * Update cryptocurrencies.json * Update changelog --- CHANGELOG.md | 1 + .../cryptocurrencies/cryptocurrencies.json | 371 +++++++++++++++--- 2 files changed, 307 insertions(+), 65 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ccb0b36f5..8b37a2ca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Refactored the health check endpoint for data providers - Improved the language localization for French (`fr`) - Improved the language localization for German (`de`) +- Refreshed the cryptocurrencies list ## 2.173.0 - 2025-06-21 diff --git a/apps/api/src/assets/cryptocurrencies/cryptocurrencies.json b/apps/api/src/assets/cryptocurrencies/cryptocurrencies.json index d7dce485a..4c591365d 100644 --- a/apps/api/src/assets/cryptocurrencies/cryptocurrencies.json +++ b/apps/api/src/assets/cryptocurrencies/cryptocurrencies.json @@ -68,6 +68,7 @@ "1ON8": "Little Dragon", "1OZT": "Tala", "1PECO": "1peco", + "1R0R": "R0AR TOKEN", "1SG": "1SG", "1SOL": "1Sol", "1ST": "FirstBlood", @@ -151,6 +152,7 @@ "A4M": "AlienForm", "A51": "A51 Finance", "A5T": "Alpha5", + "A7A5": "A7A5", "A8": "Ancient8", "AA": "Alva", "AAA": "Moon Rabbit", @@ -320,6 +322,8 @@ "AETHC": "Ankr Reward-Bearing Staked ETH", "AETHERV2": "AetherV2", "AETHRA": "Aethra AI", + "AETHUSDT": "Aave Ethereum USDT", + "AETHWETH": "Aave Ethereum WETH", "AEUR": "Anchored Coins AEUR", "AEVO": "Aevo", "AEVUM": "Aevum", @@ -388,7 +392,7 @@ "AHOO": "Ahoolee", "AHT": "AhaToken", "AI": "Sleepless", - "AI16Z": "ai16z", + "AI16Z": "ElizaOS", "AI21X": "ai21x", "AI23T": "23 Turtles", "AI69SAKURA": "Sakura", @@ -430,6 +434,7 @@ "AIFLOKI": "AI Floki", "AIFUN": "AI Agent Layer", "AIG": "A.I Genesis", + "AIGA": "Aigang", "AIGPU": "AIGPU Token", "AII": "Artificial Idiot", "AIINU": "AI INU", @@ -470,6 +475,7 @@ "AIRBTC": "AIRBTC", "AIRDROP": "AIRDROP2049", "AIRE": "Tokenaire", + "AIRENA": "AI AGENT ARENA", "AIRENE": "AIRENE by Virtuals", "AIREVOLUTION": "AI Revolution Coin", "AIRI": "aiRight", @@ -500,7 +506,7 @@ "AIVIA": "AI Virtual Agents", "AIWALLET": "AiWallet Token", "AIWS": "AIWS", - "AIX": "Aigang", + "AIX": "ALIENX", "AIX9": "AthenaX9", "AIXBT": "aixbt by Virtuals", "AIXERC": "AI-X", @@ -727,10 +733,12 @@ "ANML": "Animal Concerts", "ANN": "Annex Finance", "ANNE": "ANNE", - "ANON": "ANON", + "ANON": "HeyAnon", "ANONCOIN": "Anoncoin", + "ANONCRYPTO": "ANON", "ANRX": "AnRKey X", - "ANS": "ANS Crypto Coin", + "ANS": "Apollo Name Service", + "ANSCRYPTO": "ANS Crypto Coin", "ANSOM": "Ansom", "ANSR": "Answerly", "ANT": "Aragon", @@ -858,6 +866,7 @@ "ARCINTEL": "Arc", "ARCO": "AquariusCoin", "ARCONA": "Arcona", + "ARCOS": "ArcadiaOS", "ARCT": "ArbitrageCT", "ARCTICCOIN": "ArcticCoin", "ARCX": "ARC Governance", @@ -903,6 +912,7 @@ "ARO": "Arionum", "ARON": "Astronaut Aron", "AROR": "Arora", + "AROS": "Aros", "ARPA": "ARPA Chain", "ARPAC": "ArpaCoin", "ARQ": "ArQmA", @@ -976,6 +986,7 @@ "ASPO": "ASPO Shards", "ASQT": "ASQ Protocol", "ASR": "AS Roma Fan Token", + "ASRR": "Assisterr AI", "ASS": "Australian Safe Shepherd", "ASSA": "AssaPlay", "ASSARA": "ASSARA", @@ -1151,6 +1162,7 @@ "AWARE": "ChainAware.ai", "AWAX": "AWAX", "AWC": "Atomic Wallet Coin", + "AWE": "AWE Network", "AWK": "Awkward Monkey Base", "AWM": "Another World", "AWNEX": "AWNEX token", @@ -1158,7 +1170,7 @@ "AWORK": "Aworker", "AWP": "Ansem Wif Photographer", "AWR": "All Will Retire", - "AWS": "AurusSILVER", + "AWS": "Agentwood Studios", "AWT": "Abyss World", "AWX": "AurusX", "AX": "AlphaX", @@ -1203,7 +1215,7 @@ "AZUR": "Azuro Protocol", "AZURE": "Azure Wallet", "AZY": "Amazy", - "B": "BankCoin", + "B": "BUILDon", "B01": "b0rder1ess", "B1P": "B ONE PAYMENT", "B2": "B² Network", @@ -1392,6 +1404,7 @@ "BANKER": "BankerCoinAda", "BANKETH": "BankEth", "BANKSY": "BANKSY", + "BANNED": "BANNED", "BANNER": "BannerCoin", "BANUS": "Banus.Finance", "BANX": "Banx.gg", @@ -1480,6 +1493,7 @@ "BBL": "beoble", "BBN": "BBNCOIN", "BBO": "Bigbom", + "BBOB": "BabyBuilder", "BBONK": "BitBonk", "BBOS": "Blackbox Foundation", "BBP": "BiblePay", @@ -1530,9 +1544,10 @@ "BCOIN": "Bombcrypto", "BCOINM": "Bomb Crypto (MATIC)", "BCOQ": "BLACK COQINU", - "BCP": "BitcashPay", + "BCP": "BlockChainPeople", "BCPAY": "Bitcashpay", "BCPT": "BlockMason Credit Protocol", + "BCPV1": "BitcashPay", "BCR": "BitCredit", "BCRO": "Bonded Cronos", "BCS": "Business Credit Substitute", @@ -1568,6 +1583,7 @@ "BDSM": "BTC DOGE SOL MOON", "BDTC": "BDTCOIN", "BDX": "Beldex", + "BDXN": "Bondex Token", "BDY": "Buddy DAO", "BEA": "Beagle Inu", "BEACH": "BeachCoin", @@ -1588,6 +1604,7 @@ "BEBEV1": "BEBE v1", "BEC": "Betherchip", "BECH": "Beauty Chain", + "BECKOS": "Beckos", "BECN": "Beacon", "BECO": "BecoSwap Token", "BECX": "BETHEL", @@ -1600,6 +1617,7 @@ "BEEP": "BEEP", "BEEPBOOP": "Boop", "BEER": "BEERCOIN", + "BEER2": "Beercoin 2", "BEERUSCAT": "BeerusCat", "BEES": "BEEs", "BEET": "BEETroot", @@ -1754,6 +1772,7 @@ "BIGBALLS": "Edward Coristine", "BIGBANGCORE": "BigBang Core", "BIGCOIN": "BigCoin", + "BIGDOG": "Big Dog", "BIGFACTS": "BIGFACTS", "BIGFOOT": "BigFoot Town", "BIGHAN": "BighanCoin", @@ -1803,6 +1822,7 @@ "BIRDCHAIN": "Birdchain", "BIRDD": "BIRD DOG", "BIRDDOG": "Bird Dog", + "BIRDEI": "Birdei", "BIRDMONEY": "Bird.Money", "BIRDO": "Bird Dog", "BIS": "Bismuth", @@ -1834,6 +1854,7 @@ "BITCOINP": "Bitcoin Private", "BITCOINV": "BitcoinV", "BITCONNECT": "BitConnect Coin", + "BITCORE": "BitCore", "BITCRATIC": "Bitcratic Token", "BITDEGREE": "BitDegree", "BITE": "Bitether", @@ -2039,6 +2060,7 @@ "BMX": "BitMart Token", "BMXT": "Bitmxittz", "BMXX": "Multiplier", + "BN": "TNA Protocol", "BNA": "BananaTok", "BNANA": "Chimpion", "BNB": "Binance Coin", @@ -2065,6 +2087,7 @@ "BNBSNAKE": "BNB SNAKE", "BNBSONGOKU": "BNBsongoku", "BNBTC": "BNbitcoin", + "BNBULL": "BNBULL", "BNBVEGETA": "BNB VEGETA", "BNBWHALES": "BNB Whales", "BNBX": "Stader BNBx", @@ -2208,6 +2231,7 @@ "BONUSCAKE": "Bonus Cake", "BOO": "Spookyswap", "BOOB": "BooBank", + "BOOCHIE": "Boochie by Matt Furie", "BOOE": "Book of Ethereum", "BOOF": "Boofus by Virtuals", "BOOFI": "Boo Finance", @@ -2223,6 +2247,7 @@ "BOOMER": "Boomer", "BOONS": "BOONSCoin", "BOOP": "BOOP", + "BOOPA": "Boopa", "BOOS": "Boost Trump Campaign", "BOOST": "PodFast", "BOOSTCO": "Boost", @@ -2234,6 +2259,7 @@ "BOPPY": "BOPPY", "BOR": "BoringDAO", "BORA": "BORA", + "BORAV1": "BORA v1", "BORED": "Bored Museum", "BORG": "SwissBorg", "BORGY": "BORGY", @@ -2250,6 +2276,7 @@ "BOSONC": "BosonCoin", "BOSS": "BitBoss", "BOSSBABY": "BossBaby", + "BOSSBURGER": "Boss Burger", "BOSSCOQ": "THE COQFATHER", "BOST": "BoostCoin", "BOSU": "Bosu Inu", @@ -2268,6 +2295,7 @@ "BOWSC": "BowsCoin", "BOWSER": "Bowser", "BOX": "DeBoxToken", + "BOXCAT": "BOXCAT", "BOXETH": "Cat-in-a-Box Ether", "BOXT": "BOX Token", "BOXX": "Blockparty", @@ -2325,6 +2353,7 @@ "BRAM": "Defibox bRAM", "BRANA": "Branaverse", "BRAND": "BrandProtect", + "BRANDY": "BRANDY", "BRAT": "Peak Brat", "BRATT": "Son of Brett", "BRAWL": "BitBrawl", @@ -2360,6 +2389,7 @@ "BRIC": "BrightCoin", "BRICK": "Brickchain FInance", "BRICKS": "MyBricks", + "BRICS": "BRICS Chain", "BRIDGE": "Bridge Bot", "BRIGHT": "Bright Token", "BRIGHTU": "Bright Union", @@ -2379,6 +2409,7 @@ "BRNK": "Brank", "BRNX": "Bronix", "BRO": "Bro the cat", + "BROAK": "Broak on Base", "BROC": "Broccoli (broc.wtf)", "BROCC": "Broccoli", "BROCCO": "Broccoli (firstbroccoli.com)", @@ -2508,8 +2539,10 @@ "BTCMT": "Minto", "BTCN": "Bitcorn", "BTCNOW": "Blockchain Technology Co.", + "BTCONETH": "bitcoin on Ethereum", "BTCP": "Bitcoin Palladium", "BTCPAY": "Bitcoin Pay", + "BTCPT": "Bitcoin Platinum", "BTCPX": "BTC Proxy", "BTCR": "BitCurrency", "BTCRED": "Bitcoin Red", @@ -2573,7 +2606,7 @@ "BTU": "BTU Protocol", "BTV": "Bitvote", "BTW": "BitWhite", - "BTX": "BitCore", + "BTX": "Bitradex Token", "BTXC": "Bettex coin", "BTY": "Bityuan", "BTYC": "BigTycoon", @@ -2590,7 +2623,7 @@ "BUBU": "BUBU", "BUBV1": "BUBCAT v1", "BUC": "Beau Cat", - "BUCK": "Coinbuck", + "BUCK": "GME Mascot", "BUCKAZOIDS": "Buckazoids", "BUCKS": "SwagBucks", "BUCKY": "Bucky", @@ -2621,6 +2654,7 @@ "BULDAK": "Buldak", "BULEI": "Bulei", "BULL": "Tron Bull", + "BULLA": "BULLA", "BULLBEAR": "BullBear AI", "BULLC": "BuySell", "BULLF": "BULL FINANCE", @@ -2662,6 +2696,7 @@ "BURNZ": "BURNZ", "BURP": "CoinBurp", "BURRRD": "BURRRD", + "BURT": "BURT", "BUSD": "Binance USD", "BUSDC": "BUSD", "BUSY": "Busy DAO", @@ -2674,6 +2709,7 @@ "BUY": "Burency", "BUYI": "Buying.com", "BUYT": "Buy the DIP", + "BUZ": "BUZ", "BUZZ": "Hive AI", "BUZZCOIN": "BuzzCoin", "BV3A": "Buccaneer V3 Arbitrum", @@ -2761,6 +2797,7 @@ "CAH": "Moon Tropica", "CAI": "Chasm", "CAID": "ClearAid", + "CAILA": "Caila", "CAIR": "Crypto-AI-Robo.com", "CAITOKEN": "Cai Token", "CAIV": "CARVIS", @@ -2810,11 +2847,13 @@ "CAPTAINPLANET": "Captain Planet", "CAPY": "Capybara", "CAPYBARA": "Capybara", + "CAPYBARA1995": "Capybara", "CAR": "Central African Republic Meme", "CARAT": "Carats Token", "CARBLOCK": "CarBlock", "CARBO": "CleanCarbon", - "CARBON": "Carboncoin", + "CARBON": "Carbon", + "CARBONCOIN": "Carboncoin", "CARBONGEMS": "Carbon GEMS", "CARD": "Cardstack", "CARDS": "Cardstarter", @@ -2833,6 +2872,7 @@ "CART": "CryptoArt.Ai", "CARTAXI": "CarTaxi", "CARTERCOIN": "CarterCoin", + "CARTIER": "Cartier", "CARV": "CARV", "CAS": "Cashaa", "CASH": "CashCoin", @@ -2905,6 +2945,8 @@ "CATX": "CAT.trade Protocol", "CATZ": "CatzCoin", "CAU": "Canxium", + "CAUSE": "Causecoin", + "CAV1": "Coupon Assets v1", "CAVA": "Cavapoo", "CAVADA": "Cavada", "CAVE": "Deepcave", @@ -2957,6 +2999,7 @@ "CCC": "CCCoin", "CCCX": "Clipper Coin Capital", "CCD": "Concordium", + "CCDOG": "Courage The Dog", "CCDS": "CCDS INTERNATIONAL", "CCE": "CloudCoin", "CCGDS": "CCGDS", @@ -3035,7 +3078,7 @@ "CFD": "Confido", "CFF": "Coffe", "CFG": "Centrifuge", - "CFI": "Cofound.it", + "CFI": "CyberFi Token", "CFL365": "CFL365 Finance", "CFLASH": "Flash", "CFLO": "Chain Flowers", @@ -3054,7 +3097,7 @@ "CGLD": "Celo Gold", "CGO": "Comtech Gold", "CGPT": "ChainGPT", - "CGPU": "CloudGPU", + "CGPU": "ChainGPU", "CGS": "Crypto Gladiator Shards", "CGT": "Coin Gabbar Token", "CGTV1": "Curio Governance", @@ -3077,6 +3120,7 @@ "CHAMPZ": "Champz", "CHAN": "ChanCoin", "CHANCE": "Ante Casino", + "CHANEL": "Chanel", "CHANG": "Chang", "CHANGE": "ChangeX", "CHAO": "23 Skidoo", @@ -3149,6 +3193,7 @@ "CHILL": "ChillPill", "CHILLAX": "Chillax", "CHILLGUY": "Chill Guy", + "CHILLHOUSE": "Chill House", "CHIM": "Chimera", "CHINA": "China Coin", "CHINAU": "Chinau", @@ -3159,7 +3204,8 @@ "CHIPI": "chipi", "CHIPPY": "Chippy", "CHIPS": "CHIPS", - "CHIRP": "Chirp", + "CHIRP": "Chirp Token", + "CHIRPFI": "Chirp", "CHIRPY": "Chirpy Boy", "CHITAN": "Chitan", "CHITCAT": "ChitCAT", @@ -3258,7 +3304,8 @@ "CLAS": "Classic USDC", "CLASH": "Clashub", "CLASS": "Class Coin", - "CLAY": "Clay Nation", + "CLAY": "Clayton", + "CLAYN": "Clay Nation", "CLB": "Cloudbric", "CLBR": "Colibri Protocol", "CLBTC": "clBTC", @@ -3296,6 +3343,7 @@ "CLOKI": "CATLOKI", "CLORE": "Clore.ai", "CLOUD": "Cloud", + "CLOUDGPU": "CloudGPU", "CLOUT": "BitClout", "CLOUTIO": "Clout", "CLOW": "Clown Pepe", @@ -3336,6 +3384,7 @@ "CMP": "Caduceus", "CMPCO": "CampusCoin", "CMPT": "Spatial Computing", + "CMPV2": "Caduceus Protocol", "CMQ": "Communique", "CMS": "COMSA", "CMSN": "The Commission", @@ -3402,6 +3451,7 @@ "COFFEECOIN": "CoffeeCoin", "COFI": "CoinFi", "COFIX": "CoFIX", + "COFOUNDIT": "Cofound.it", "COG": "Cognitio", "COGE": "Cogecoin", "COGEN": "Cogenero", @@ -3411,6 +3461,7 @@ "COINAI": "Coinbase AI Agent", "COINB": "Coinbidex", "COINBT": "CoinBot", + "COINBUCK": "Coinbuck", "COINDEFI": "Coin", "COING": "Coingrid", "COINH": "Coinhound", @@ -3427,6 +3478,7 @@ "COKEONS": "Coke on Sol", "COL": "Clash of Lilliput", "COLA": "Cola", + "COLISEUM": "Coliseum", "COLL": "Collateral Pay", "COLLAR": "PolyPup Finance", "COLLAT": "Collaterize", @@ -3439,7 +3491,7 @@ "COLS": "Cointel", "COLT": "Collateral Network", "COLX": "ColossusCoinXT", - "COM": "Coliseum", + "COM": ".com", "COMAI": "Commune AI", "COMB": "Combo", "COMBO": "COMBO", @@ -3472,11 +3524,13 @@ "CONV": "Convergence", "CONVO": "Prefrontal Cortex Convo Agent by Virtuals", "CONX": "Connex", + "CONY": "Cony", "COO": "Cool Cats MILK", "COOCHIE": "Cucci", "COOHA": "CoolHash", - "COOK": "Cook", + "COOK": "COOK", "COOKIE": "Cookie", + "COOKTOKEN": "Cook", "COOL": "CoolCoin", "COOP": "Coop Network", "COPA": "COCO PARK", @@ -3484,6 +3538,7 @@ "COPI": "Cornucopias", "COPIO": "Copiosa Coin", "COPIUM": "Copium", + "COPPER": "COPPER", "COPS": "Cops Finance", "COPYCAT": "Copycat Finance", "COQ": "Coq Inu", @@ -3491,6 +3546,7 @@ "CORA": "Cora by Virtuals", "CORAL": "Coral Protocol", "CORALPAY": "CoralPay", + "CORALSWAP": "Coral Swap", "CORE": "Core", "COREC": "CoreConnect", "COREDAO": "coreDAO", @@ -3587,6 +3643,7 @@ "CRAIG": "CraigsCoin", "CRAMER": "Cramer Coin", "CRANEPAY": "Cranepay", + "CRAPPY": "CrappyBird", "CRASH": "Solana Crash", "CRASHBOYS": "CRASHBOYS", "CRAVE": "CraveCoin", @@ -3698,6 +3755,7 @@ "CRWNY": "Crowny Token", "CRX": "ChronosCoin", "CRY": "Crypto News Flash AI", + "CRYBB": "CryBaby", "CRYN": "CRYN", "CRYO": "CryoDAO", "CRYP": "CrypticCoin", @@ -3755,6 +3813,7 @@ "CSR": "Cashera", "CSS": "CoinSwap Token", "CST": "Crypto Samurai", + "CSTAR": "COINSTAR", "CSTC": "CryptosTribe", "CSTL": "Castle", "CSTR": "CoreStarter", @@ -3800,6 +3859,7 @@ "CTX": "Cryptex", "CTXC": "Cortex", "CTY": "Connecty", + "CTYN": "Canyont", "CU": "Crypto Unicorns", "CUAN": "CuanSwap.com", "CUB": "Cub Finance", @@ -4005,9 +4065,10 @@ "DAOSOL": "MonkeDAO", "DAOVC": "DAO.VC", "DAOX": "Daox", - "DAPP": "LiquidApps", + "DAPP": "Pencils Protocol", "DAPPSY": "Dappsy", "DAPPT": "Dapp Token", + "DAPPTOKEN": "LiquidApps", "DAPPX": "dAppstore", "DAPS": "DAPS Coin", "DAR": "Mines of Dalarnia", @@ -4020,9 +4081,10 @@ "DARED": "Daredevil Dog", "DARICO": "Darico", "DARIK": "Darik", - "DARK": "Dark Frontiers", + "DARK": "Dark Eclipse", "DARKCOIN": "Dark", "DARKEN": "Dark Energy Crystals", + "DARKF": "Dark Frontiers", "DARKMAGACOIN": "DARK MAGA", "DARKT": "Dark Trump", "DARKTOKEN": "DarkToken", @@ -4052,6 +4114,7 @@ "DAVIS": "Davis Cup Fan Token", "DAVP": "Davion", "DAW": "DAWKOINS", + "DAWAE": "DaWae", "DAWCURRENCY": "Daw Currency", "DAWG": "Dawg Coin", "DAWGS": "SpaceDawgs", @@ -4389,6 +4452,7 @@ "DINEROBET": "Dinerobet", "DINGER": "Dinger Token", "DINGO": "Dingocoin", + "DINNER": "Trump Dinner", "DINO": "DinoLFG", "DINOS": "Dinosaur Inu", "DINOSWAP": "DinoSwap", @@ -4529,6 +4593,7 @@ "DOGE20": "Doge 2.0", "DOGEAI": "DOGEai", "DOGEB": "DogeBonk", + "DOGEBASE": "Doge Base", "DOGEBNB": "DogeBNB", "DOGEC": "DogeCash", "DOGECAST": "Dogecast", @@ -4679,6 +4744,7 @@ "DP": "DigitalPrice", "DPAD": "Dpad Finance", "DPAY": "Devour", + "DPCORE": "DeepCore AI", "DPDBC": "PDBC Defichain", "DPET": "My DeFi Pet", "DPEX": "DPEX", @@ -4698,11 +4764,12 @@ "DPX": "Dopex", "DPY": "Delphy", "DQQQ": "Invesco QQQ Trust Defichain", - "DRA": "DraculaCoin", + "DRA": "Decentralized Retirement Account", "DRAC": "DRAC Network", "DRACE": "DeathRoad", "DRACO": "DT Token", "DRACOO": "DracooMaster", + "DRACULA": "Dracula", "DRAFTC": "Draftcoin", "DRAGGY": "Draggy", "DRAGON": "Dragon", @@ -4729,7 +4796,8 @@ "DRG": "Dragon Coin", "DRGN": "Dragonchain", "DRIFT": "Drift protocol", - "DRINK": "DrinkChain", + "DRINK": "DRINK", + "DRINKCHAIN": "DrinkChain", "DRIP": "Metadrip", "DRIPNET": "Drip Network", "DRIV": "DRIVEZ", @@ -4840,6 +4908,7 @@ "DUO": "ParallelCoin", "DUOLINGOAI": "DUOLINGO AI", "DUOT": "DUO Network", + "DUPE": "Dupe", "DUREV": "Povel Durev", "DUROV": "FREE DUROV", "DURTH": "iShares MSCI World ETF Tokenized Stock Defichain", @@ -4993,6 +5062,7 @@ "ECOFI": "EcoFi", "ECOIN": "Ecoin", "ECOM": "Omnitude", + "ECOR": "Ecorpay token", "ECOREAL": "Ecoreal Estate", "ECOTERRA": "ecoterra", "ECOX": "ECOx", @@ -5015,6 +5085,7 @@ "EDFI": "EdFi", "EDG": "Edgeless", "EDGE": "Definitive", + "EDGEN": "LayerEdge", "EDGENET": "EDGE", "EDGESOL": "Edgevana Staked SOL", "EDGEW": "Edgeware", @@ -5068,6 +5139,7 @@ "EGGY": "EGGY", "EGI": "eGame", "EGL": "The Eagle Of Truth", + "EGL1": "EGL1", "EGLD": "eGold", "EGO": "Paysenger EGO", "EGOCOIN": "EGOcoin", @@ -5111,6 +5183,7 @@ "ELCASH": "Electric Cash", "ELD": "Electrum Dark", "ELDA": "Eldarune", + "ELDE": "Elderglade", "ELE": "Elementrem", "ELEC": "Electrify.Asia", "ELECTRON": "Electron (Atomicals)", @@ -5610,6 +5683,8 @@ "FANC": "fanC", "FAND": "Fandomdao", "FANG": "FANG Token", + "FANS": "Fantasy Cash", + "FANTOM": "Fantom Maker", "FANV": "FanVerse", "FANX": "FrontFanz", "FANZ": "FanChain", @@ -5679,6 +5754,7 @@ "FDM": "Fandom", "FDO": "Firdaos", "FDR": "French Digital Reserve", + "FDS": "Foodie Squirrel", "FDT": "Frutti Dino", "FDUSD": "First Digital USD", "FDX": "fidentiaX", @@ -5744,6 +5820,7 @@ "FIELD": "Fieldcoin", "FIERO": "Fieres", "FIF": "flokiwifhat", + "FIFA": "FIFA", "FIFTY": "FIFTYONEFIFTY", "FIG": "FlowCom", "FIGH": "FIGHT FIGHT FIGHT", @@ -5798,6 +5875,7 @@ "FISTBUMP": "FistBump", "FIT": "Financial Investment Token", "FITC": "Fitcoin", + "FITCOIN": "FITCOIN", "FITFI": "Step App", "FITT": "Fitmint", "FIU": "beFITTER", @@ -5959,6 +6037,8 @@ "FOIN": "Foin", "FOL": "Folder Protocol", "FOLD": "Manifold Finance", + "FOLGORYUSD": "FolgoryUSD", + "FOLGORYUSDV1": "FolgoryUSD", "FOLO": "Alpha Impact", "FOM": "FOMO BULL CLUB", "FOMO": "Fomo", @@ -6018,7 +6098,7 @@ "FOXV2": "FoxFinanceV2", "FOXXY": "FOXXY", "FOXY": "Foxy", - "FP": "Fren Pet", + "FP": "Forgotten Playland", "FPAD": "FantomPAD", "FPC": "Futurepia", "FPEPE": "Based Father Pepe", @@ -6031,6 +6111,7 @@ "FR": "Freedom Reserve", "FRA": "Findora", "FRAC": "FractalCoin", + "FRANK": "Frank", "FRATT": "Frogg and Ratt", "FRAX": "Frax", "FRAZ": "FrazCoin", @@ -6058,6 +6139,7 @@ "FREN": "FREN", "FRENC": "Frencoin", "FRENCH": "French On Base", + "FRENPET": "Fren Pet", "FRENS": "Farmer Friends", "FRESCO": "Fresco", "FRF": "France REV Finance", @@ -6081,6 +6163,7 @@ "FROGCEO": "Frog Ceo", "FROGE": "Froge Finance", "FROGEX": "FrogeX", + "FROGGER": "FROGGER", "FROGGY": "Froggy", "FROGLIC": "Pink Hood Froglicker", "FROGO": "Frogo", @@ -6180,6 +6263,7 @@ "FUNK": "Cypherfunks Coin", "FUR": "Furio", "FURIE": "Matt Furie", + "FURM": "Furmula", "FURU": "Furucombo", "FURUKURU": "Furukuru", "FURY": "Engines of Fury", @@ -6188,6 +6272,7 @@ "FUSD": "Fantom USD", "FUSDC": "Fluidity", "FUSE": "Fuse Network Token", + "FUSIO": "FUSIO", "FUSION": "FusionBot", "FUSO": "Fusotao", "FUT": "FuturesAI", @@ -6311,8 +6396,10 @@ "GASG": "Gasgains", "GASP": "GASP", "GASPCOIN": "gAsp", + "GASS": "Gasspas", "GASTRO": "GastroCoin", - "GAT": "GATCOIN", + "GAT": "Gather", + "GATCOIN": "GATCOIN", "GATE": "GATENet", "GATEWAY": "Gateway Protocol", "GATHER": "Gather", @@ -6425,6 +6512,7 @@ "GEOJ": "Geojam", "GEOL": "GeoLeaf", "GEON": "Geon", + "GEORGE": "GEORGE", "GEP": "Gaia", "GER": "GermanCoin", "GERA": "Gera Coin", @@ -6537,6 +6625,7 @@ "GIV": "Giveth", "GIVE": "GiveCoin", "GIZ": "GIZMOcoin", + "GIZA": "Giza", "GIZMO": "GIZMO•IMAGINARY• KITTEN (Runes)", "GJC": "Global Jobcoin", "GKAPPA": "Golden Kappa", @@ -6641,6 +6730,7 @@ "GNX": "Genaro Network", "GNY": "GNY", "GO": "GoChain", + "GO4": "GameonForge", "GOA": "GoaCoin", "GOAL": "TopGoal Token", "GOALBON": "Goal Bonanza", @@ -6659,7 +6749,8 @@ "GODCAT": "GodcatExplodingKittens", "GODE": "Gode Chain", "GODEX": "GUARD OF DECENT", - "GODL": "GODL", + "GODL": "RoOLZ", + "GODLAPP": "GODL", "GODS": "Gods Unchained", "GODZ": "Cryptogodz", "GOETH": "Algomint", @@ -6718,6 +6809,7 @@ "GOOGLY": "Googly Cat", "GOOMPY": "Goompy by Matt Furie", "GOON": "Goonies", + "GOONC": "gooncoin", "GOP": "The Republican Party", "GOPX": "GOPX Token", "GOR": "@gork", @@ -6750,6 +6842,7 @@ "GPAWS": "Golden Paws", "GPBP": "Genius Playboy Billionaire Philanthropist", "GPCX": "Good Person Coin", + "GPECTRA": "Pectra Giraffe", "GPKR": "Gold Poker", "GPL": "Gold Pressed Latinum", "GPLX": "Gplx", @@ -6958,6 +7051,7 @@ "GWGW": "GoWrap", "GWT": "Galaxy War", "GX": "GameX", + "GX3": "GX3ai", "GXA": "Galaxia", "GXC": "GXChain", "GXE": "XENO Governance", @@ -7010,6 +7104,7 @@ "HALO": "Halo Coin", "HALOPLATFORM": "Halo Platform", "HAM": "Hamster", + "HAMBURG": "Hamburg Eyes", "HAMI": "Hamachi Finance", "HAMMY": "SAD HAMSTER", "HAMS": "HamsterCoin", @@ -7017,7 +7112,8 @@ "HAMSTERB": "HamsterBase", "HAMSTR": "Hamster Coin", "HAN": "HanChain", - "HANA": "Hanacoin", + "HANA": "Hana", + "HANACOIN": "Hanacoin", "HANAETHCTO": "HANA", "HAND": "ShowHand", "HANDY": "Handy", @@ -7027,6 +7123,7 @@ "HAP": "Happy Train", "HAPI": "HAPI", "HAPPY": "Happy Cat", + "HAPPYC": "HappyCoin", "HAR": "Harambe Coin", "HARAM": "HARAM", "HARAMBE": "Harambe on Solana", @@ -7201,6 +7298,7 @@ "HIGAZERS": "hiGAZERS", "HIGH": "Highstreet", "HIGHER": "Higher", + "HIGHKEY": "HighKey", "HIH": "HiHealth", "HIKARI": "Hikari Protocol", "HILL": "President Clinton", @@ -7235,6 +7333,7 @@ "HITOP": "Hitop", "HIUNDEAD": "hiUNDEAD", "HIVE": "Hive", + "HIVP": "HiveSwap", "HIX": "HELIX Orange", "HK": "Hongkong", "HKB": "HongKong BTC bank", @@ -7316,7 +7415,7 @@ "HOLDS": "Holdstation", "HOLY": "Holy Trinity", "HOM": "Homeety", - "HOME": "OtterHome", + "HOME": "Home", "HOMEBREW": "Homebrew Robotics Club", "HOMER": "Homer Simpson", "HOMERB": "Homer BSC", @@ -7367,10 +7466,11 @@ "HPAD": "HarmonyPad", "HPAY": "HedgePay", "HPB": "High Performance Blockchain", - "HPC": "HappyCoin", + "HPC": "Helal Para Coin", "HPL": "HappyLand (HPL)", "HPN": "HyperonChain", "HPO": "Hippocrat", + "HPOWSB10I": "HarryPotterObamaWallStreetBets10Inu", "HPT": "Huobi Pool Token", "HPX": "HUPAYX", "HPY": "Hyper Pay", @@ -7433,6 +7533,7 @@ "HUHCAT": "huhcat", "HULEZHI": "HU LE ZHI", "HUM": "Humanscape", + "HUMA": "Huma Finance", "HUMAI": "Humanoid AI", "HUMP": "Hump", "HUMV1": "Humanscape v1", @@ -7579,7 +7680,9 @@ "IDM": "IDM", "IDNA": "Idena", "IDO": "Idexo", - "IDOL": "IDOLINU", + "IDOL": "MEET48 Token", + "IDOLINU": "IDOLINU", + "IDOODLES": "IDOODLES", "IDORU": "Vip2Fan", "IDRISS": "IDRISS", "IDRT": "Rupiah Token", @@ -7629,6 +7732,7 @@ "ILLUMINAT": "Illuminat", "ILT": "iOlite", "ILV": "Illuvium", + "IMAGE": "Imagen AI", "IMARO": "IMARO", "IMAYC": "IMAYC", "IMBREX": "Imbrex", @@ -7899,6 +8003,7 @@ "J8T": "JET8", "J9BC": "J9CASINO", "JACK": "Jack Token", + "JACKPOT": "Solana Jackpot", "JACS": "JACS", "JACY": "JACY", "JADE": "Jade Protocol", @@ -7915,6 +8020,7 @@ "JANE": "JaneCoin", "JANET": "Janet", "JANI": "JANI", + "JANITOR": "Janitor", "JANRO": "Janro The Rat", "JAPAN": "Japan Open Chain", "JAR": "Jarvis+", @@ -8054,6 +8160,7 @@ "JPD": "JackpotDoge", "JPEG": "JPEG'd", "JPGC": "JPGold Coin", + "JPMORGAN": "JPMorgan", "JPYC": "JPYC", "JPYX": "eToro Japanese Yen", "JRIT": "JERITEX", @@ -8159,6 +8266,7 @@ "KANG3N": "Kang3n", "KANGAL": "Kangal", "KANGO": "KANGO", + "KAON": "Kaon", "KAP": "KAP Games", "KAPPA": "Kappa", "KAPPY": "Kappy", @@ -8190,7 +8298,9 @@ "KAU": "Kinesis Gold", "KAVA": "Kava", "KAWA": "Kawakami Inu", + "KAWS": "Kaws", "KAYI": "Kayı", + "KBBB": "KILL BIG BEAUTIFUL BILL", "KBC": "Karatgold coin", "KBD": "Kyberdyne", "KBOND": "Klondike Bond", @@ -8202,7 +8312,8 @@ "KBX": "KuBitX", "KC": "Kernalcoin", "KCAKE": "KittyCake", - "KCAL": "Phantasma Energy", + "KCAL": "KCAL Token", + "KCALV2": "Phantasma Energy", "KCASH": "Kcash", "KCAT": "KING OF CATS", "KCATS": "KASPA CATS", @@ -8225,6 +8336,7 @@ "KEEMJONG": "KEEM JONG UNN", "KEEP": "Keep Network", "KEES": "Korea Entertainment Education & Shopping", + "KEETARD": "Keetard", "KEI": "Keisuke Inu", "KEIRA": "Keira", "KEK": "KekCoin", @@ -8303,7 +8415,7 @@ "KIND": "Kind Ads", "KINE": "Kine Protocol", "KINET": "KinetixFi", - "KING": "KING", + "KING": "LRT Squared", "KING93": "King93", "KINGB": "King Bean", "KINGBONK": "King Bonk", @@ -8311,6 +8423,7 @@ "KINGCOIN": "KING", "KINGD": "Kingdom of Ants", "KINGDOG": "King Dog Inu", + "KINGDOM": "KING", "KINGDOMQUEST": "Kingdom Quest", "KINGF": "King Finance", "KINGGROK": "King Grok", @@ -8409,6 +8522,7 @@ "KNUT": "Knut From Zoo", "KNW": "Knowledge", "KOAI": "KOI", + "KOBAN": "KOBAN", "KOBE": "Shabu Shabu", "KOBO": "KoboCoin", "KODA": "Koda Cryptocurrency", @@ -8425,6 +8539,7 @@ "KOJI": "Koji", "KOK": "KOK Coin", "KOKO": "KOALA AI", + "KOKOK": "KoKoK The Roach", "KOKOSWAP": "KokoSwap", "KOL": "Kollect", "KOLANA": "KOLANA", @@ -8444,6 +8559,7 @@ "KORC": "King of Referral Coin", "KORE": "KORE Vault", "KOREC": "Kore", + "KORI": "Kori The Pom", "KORRA": "KORRA", "KOS": "KONTOS", "KOSS": "Koss", @@ -8616,6 +8732,7 @@ "LANDWOLFETH": "Landwolf", "LANDWU": "LandWu", "LANE": "LaneAxis", + "LANLAN": "LanLan Cat", "LAO": "LC Token", "LAOS": "LAOS Network", "LAPI": "Lapis Inu", @@ -8635,6 +8752,7 @@ "LAUGHCOIN": "Laughcoin", "LAUNCH": "Launchblock.com", "LAUNCHCOIN": "Launch Coin on Believe", + "LAUNCHMOBY": "Moby", "LAVA": "Lava Network", "LAVASWAP": "Lavaswap", "LAVAX": "LavaX Labs", @@ -8650,6 +8768,7 @@ "LAZYCAT": "LAZYCAT", "LB": "LoveBit", "LBA": "Cred", + "LBAI": "Lemmy The Bat", "LBC": "LBRY Credits", "LBK": "LBK", "LBL": "LABEL Foundation", @@ -8786,6 +8905,7 @@ "LIBERA": "Libera Financial", "LIBERO": "Libero Financial", "LIBERTA": "The Libertarian Dog", + "LIBERTY": "Torch of Liberty", "LIBFX": "Libfx", "LIBRA": "Libra", "LIBRAP": "Libra Protocol", @@ -8793,6 +8913,7 @@ "LIC": "Ligercoin", "LICK": "PetLFG", "LICKER": "LICKER", + "LICKO": "LICKO", "LICO": "Liquid Collectibles", "LID": "Liquidity Dividends Protocol", "LIDER": "Lider Token", @@ -8869,6 +8990,7 @@ "LITT": "LitLab Games", "LIV": "LiviaCoin", "LIVE": "TRONbetLive", + "LIVENCOIN": "LivenPay", "LIVESEY": "Dr. Livesey", "LIVESTARS": "Live Stars", "LIXX": "Libra Incentix", @@ -8903,7 +9025,7 @@ "LMF": "Lamas Finance", "LMQ": "Lightning McQueen", "LMR": "Lumerin", - "LMT": "Lympo Market Token", + "LMT": "LIMITUS", "LMTOKEN": "LM Token", "LMWR": "LimeWire Token", "LMXC": "LimonX", @@ -8918,7 +9040,8 @@ "LNKC": "Linker Coin", "LNL": "LunarLink", "LNQ": "LinqAI", - "LNR": "Lunar", + "LNR": "LNR", + "LNRV2": "Lunar", "LNT": "Lottonation", "LNX": "Lunox Token", "LOA": "League of Ancients", @@ -9010,6 +9133,7 @@ "LPNT": "Luxurious Pro Network Token", "LPOOL": "Launchpool", "LPT": "Livepeer", + "LPTV1": "Livepeer v1", "LPV": "Lego Pepe Vision", "LPY": "LeisurePay", "LQ": "Liqwid Finance", @@ -9027,7 +9151,6 @@ "LRG": "Largo Coin", "LRN": "Loopring [NEO]", "LRT": "LandRocker", - "LRT2": "LRT Squared", "LSC": "LS Coin", "LSD": "Pontem Liquidswap", "LSDOGE": "LSDoge", @@ -9095,7 +9218,9 @@ "LUCKYSLP": "LuckysLeprecoin", "LUCRE": "Lucre", "LUCY": "Lucy", + "LUCYAI": "Pitch Lucy AI", "LUDO": "Ludo", + "LUDUS": "Ludus", "LUFC": "Leeds United Fan Token", "LUFFY": "Luffy", "LUFFYG": "Luffy G5", @@ -9131,6 +9256,7 @@ "LUT": "Cinemadrom", "LUTETIUM": "Lutetium Coin", "LUX": "Lux Token", + "LUXAI": "Lux Token", "LUXCOIN": "LUXCoin", "LUXO": "Luxo", "LUXU": "Luxury Travel Token", @@ -9141,7 +9267,7 @@ "LVLUSD": "Level USD", "LVLY": "LyvelyToken", "LVM": "LakeViewMeta", - "LVN": "LivenPay", + "LVN": "Levana Protocol", "LVVA": "Levva Protocol Token", "LVX": "Level01", "LWA": "LUMIWAVE", @@ -9161,9 +9287,11 @@ "LYK": "Loyakk Vega", "LYL": "LoyalCoin", "LYM": "Lympo", + "LYMPO": "Lympo Market Token", "LYN": "LYNCHPIN Token", "LYNK": "Lynked.World", - "LYNX": "Lynx", + "LYNX": "Lynex", + "LYNXCOIN": "Lynx", "LYO": "LYO Credit", "LYP": "Lympid Token", "LYQD": "eLYQD", @@ -9241,6 +9369,7 @@ "MAID": "MaidSafe Coin", "MAIL": "CHAINMAIL", "MAINSTON": "Ston", + "MAIV": "MAIV", "MAJ": "Major Frog", "MAJO": "Majo", "MAJOR": "Major", @@ -9255,6 +9384,8 @@ "MALOU": "MALOU Token", "MAMAI": "MammothAI", "MAMBA": "Mamba", + "MAMBO": "Mambo", + "MAMO": "Mamo", "MAN": "Matrix AI Network", "MANA": "Decentraland", "MANA3": "MANA3", @@ -9302,9 +9433,10 @@ "MARMAJ": "marmaj", "MARO": "Maro", "MAROV1": "TTC PROTOCOL", - "MARS": "MarsCoin", + "MARS": "Mars", "MARS4": "MARS4", "MARSC": "MarsCoin", + "MARSCOIN": "MarsCoin", "MARSH": "Unmarshal", "MARSO": "Marso.Tech", "MARSRISE": "MarsRise", @@ -9323,6 +9455,7 @@ "MARYJ": "MaryJane Coin", "MAS": "Midas Protocol", "MASA": "Masa", + "MASHA": "Masha", "MASK": "Mask Network", "MASP": "Market.space", "MASQ": "MASQ", @@ -9535,6 +9668,7 @@ "MEME": "Memecoin", "MEMEA": "MEME AI", "MEMEAI": "Meme Ai", + "MEMEBRC": "MEME", "MEMECUP": "Meme Cup", "MEMEETF": "Meme ETF", "MEMEFI": "MemeFi", @@ -9616,9 +9750,10 @@ "METATI": "Metatime Coin", "METATR": "MetaTrace Utility Token", "METAUFO": "MetaUFO", - "METAV": "MetaVPad", + "METAV": "METAVERSE", "METAVE": "Metaverse Convergence", "METAVIE": "Metavie", + "METAVPAD": "MetaVPad", "METAW": "MetaWorth", "METAX": "MetaverseX", "METEOR": "Meteorite Network", @@ -9711,7 +9846,9 @@ "MIGGLEI": "Migglei", "MIGGLES": "Mr Miggles", "MIGMIG": "MigMig Swap", + "MIH": "MINE COIN", "MIHARU": "Smiling Dolphin", + "MIHV1": "MINE COIN v1", "MIIDAS": "Miidas NFT", "MIININGNFT": "MiningNFT", "MIKE": "Mike", @@ -9773,7 +9910,7 @@ "MINO": "MINO INU", "MINOCOINCTO": "MINO", "MINS": "Minswap", - "MINT": "Mint Club", + "MINT": "Mintify", "MINTCHAIN": "Mint", "MINTCOIN": "MintCoin", "MINTE": "Minter HUB", @@ -9789,6 +9926,7 @@ "MIR": "Mirror Protocol", "MIRA": "Chains of War", "MIRACLE": "MIRACLE", + "MIRACLETELE": "Miracle Tele", "MIRAI": "Project MIRAI", "MIRAIBUILD": "MIRAI", "MIRC": "MIR COIN", @@ -9819,6 +9957,7 @@ "MIXAI": "Mixcash AI", "MIXCOIN": "Mixaverse", "MIXER": "TON Mixer", + "MIXIE": "Mixie", "MIY": "Icel Idman Yurdu Token", "MIZ": "Mizar", "MJT": "MojitoSwap", @@ -9925,7 +10064,7 @@ "MOBIU": "Mobius Money", "MOBU": "MOBU", "MOBX": "MOBIX", - "MOBY": "Moby", + "MOBY": "Moby AI", "MOBYONBASE": "Moby", "MOBYONBASEV1": "Moby v1", "MOC": "Mossland", @@ -9990,11 +10129,13 @@ "MONAV": "Monavale", "MONB": "MonbaseCoin", "MONDO": "mondo", + "MONEROCHAN": "Monerochan", "MONET": "Claude Monet Memeory Coin", "MONETA": "Moneta", "MONEY": "MoneyCoin", "MONEYBEE": "MONEYBEE", "MONEYBYTE": "MoneyByte", + "MONEYGOD": "Money God One", "MONEYIMT": "MoneyToken", "MONF": "Monfter", "MONG": "MongCoin", @@ -10032,6 +10173,7 @@ "MOODENGWIF": "MOODENGWIF", "MOOI": "Moonai", "MOOLA": "Degen Forest", + "MOOLAH": "Moolah", "MOOLYA": "moolyacoin", "MOON": "r/CryptoCurrency Moons", "MOONARCH": "Moonarch", @@ -10200,6 +10342,7 @@ "MTL": "Metal", "MTLM3": "Metal Music v3", "MTLS": "eMetals", + "MTLV1": "Metal v1", "MTLX": "Mettalex", "MTMS": "MTMS Network", "MTN": "TrackNetToken", @@ -10219,6 +10362,7 @@ "MTT": "MulTra", "MTTCOIN": "Money of Tommorow, Today", "MTV": "MultiVAC", + "MTV1": "Mint Club", "MTVT": "Metaverser", "MTW": "Meta Space 2045", "MTX": "Matryx", @@ -10282,6 +10426,7 @@ "MVG": "Mad Viking Games", "MVI": "Metaverse Index", "MVL": "MVL", + "MVOYA": "VOYA (Merlin Bridge)", "MVP": "MAGA VP", "MVPC": "MVP Coin", "MVRS": "Meta MVRS", @@ -10358,7 +10503,9 @@ "NAFT": "Nafter", "NAH": "Strayacoin", "NAI": "Nuklai", + "NAIIVE": "Naiive", "NAILONG": "Nailong", + "NAIT": "Node AI Token", "NAKA": "Nakamoto Games", "NAKAV1": "Nakamoto Games v1", "NALA": "Not a lion, a...", @@ -10604,6 +10751,7 @@ "NFTY": "NFTY Token", "NFTYP": "NFTY DeFi Protocol", "NFUP": "Natural Farm Union Protocol", + "NFX": "Nova Fox", "NFXC": "NFX Coin", "NFY": "Non-Fungible Yearn", "NGA": "NGA Tiger", @@ -10616,6 +10764,7 @@ "NHCT": "Nano Healthcare Token", "NHI": "Non Human Intelligence", "NHT": "Neighbourhoods", + "NIANNIAN": "NianNian", "NIAO": "NIAO", "NIBBLES": "Nibbles", "NIBI": "Nibiru Chain", @@ -10637,6 +10786,7 @@ "NIK": "NIKPLACE", "NIKO": "NikolAI", "NIL": "Nillion", + "NILA": "MindWave", "NILE": "Nile", "NIM": "Nimiq", "NIMBUS": "Nimbus AI", @@ -10674,7 +10824,7 @@ "NKN": "NKN", "NKT": "NakomotoDark", "NKYC": "NKYC Token", - "NLC": "NoLimitCoin", + "NLC": "Nelore Coin", "NLC2": "NoLimitCoin", "NLG": "Gulden", "NLINK": "Neuralink", @@ -10702,6 +10852,7 @@ "NOA": "NOA PLAY", "NOAH": "NOAHCOIN", "NOBL": "NobleCoin", + "NOBODY": "Nobody Sausage", "NOBS": "No BS Crypto", "NOCHILL": "AVAX HAS NO CHILL", "NODE": "NodelyAI", @@ -10815,6 +10966,7 @@ "NTR": "Nether", "NTRN": "Neutron", "NTS": "Notarised", + "NTV": "NativToken", "NTVRK": "Netvrk", "NTWK": "Network Token", "NTX": "NuNet", @@ -10834,6 +10986,7 @@ "NUMI": "NUMINE Token", "NUMITOR": "Numitor", "NUR": "Nurcoin", + "NURA": "Nura Labs", "NUSA": "Nusa", "NUSD": "Nomin USD", "NUT": "Native Utility Token", @@ -10879,7 +11032,8 @@ "NXTT": "Next Earth", "NXTTY": "NXTTY", "NYA": "Nya", - "NYAN": "NyanCoin", + "NYAN": "NYAN", + "NYANCOIN": "NyanCoin", "NYANDOGE": "NyanDOGE International", "NYANTE": "Nyantereum International", "NYBBLE": "Nybble", @@ -10926,6 +11080,7 @@ "OBSUSHI": "Sushi (OmniBridge)", "OBT": "Oobit", "OBTC": "Obitan Chain", + "OBVIOUS": "OBVIOUS COIN", "OBX": "OpenBlox", "OC": "OrangeCoin", "OCADA": "OCADA.AI", @@ -11041,6 +11196,7 @@ "OLEA": "Olea Token", "OLEV1": "OpenLeverage v1", "OLIVE": "Olive", + "OLIVIA": "AIGOV", "OLOID": "OLOID", "OLT": "OneLedger", "OLV": "OldV", @@ -11052,6 +11208,7 @@ "OLYN": "Olyn by Virtuals", "OM": "MANTRA", "OMA": "OmegaCoin", + "OMALLEY": "O'Malley", "OMAX": "Omax", "OMAXV1": "Omax v1", "OMC": "Omchain", @@ -11088,6 +11245,7 @@ "ONDO": "Ondo", "ONDOAI": "Ondo DeFAI", "ONE": "Harmony", + "ONEROOT": "OneRoot Network", "ONES": "OneSwap DAO", "ONET": "ONE Token", "ONEX": "ONE TECH", @@ -11165,6 +11323,7 @@ "OPTIG": "Catgirl Optimus", "OPTIM": "Optimus X", "OPTIMOUSE": "Optimouse", + "OPTIMUS": "Optimus", "OPTIO": "Optio", "OPTION": "OptionCoin", "OPU": "Opu Coin", @@ -11191,9 +11350,11 @@ "ORBK": "Ordibank", "ORBR": "Orbler", "ORBS": "Orbs", - "ORBT": "Orbitt Pro", + "ORBT": "Orbitt Token", + "ORBTV1": "Orbitt Pro", "ORC": "Orbit Chain", "ORCA": "Orca", + "ORCAI": "ORCA", "ORD": "ordinex", "ORDER": "Orderly Network", "ORDI": "Ordinals ", @@ -11261,6 +11422,7 @@ "OTO": "OTOCASH", "OTSEA": "OTSea", "OTT": "Coost", + "OTTERHOME": "OtterHome", "OTTERSPACE": "Otter Space", "OTX": "Octanox", "OUCHI": "OUCHI", @@ -11311,6 +11473,7 @@ "P": "PUPS•WORLD•PEACE", "P202": "Project 202", "P2PS": "P2P Solutions Foundation", + "P33L": "THE P33L", "P3D": "3DPass", "P404": "Potion 404", "PAAL": "PAAL AI", @@ -11418,6 +11581,7 @@ "PAW": "PAWSWAP", "PAWPAW": "PawPaw", "PAWS": "PAWS", + "PAWSE": "PAWSE", "PAWSTA": "dogeatingpasta", "PAWSTARS": "PawStars", "PAWTH": "Pawthereum", @@ -11656,6 +11820,7 @@ "PETOSHI": "Petoshi", "PETS": "PolkaPets", "PETT": "Pett Network", + "PETUNIA": "Petunia", "PEUSD": "peg-eUSD", "PEW": "pepe in a memes world", "PEX": "Pexcoin", @@ -11664,6 +11829,7 @@ "PFL": "Professional Fighters League Fan Token", "PFR": "PayFair", "PFT": "PolarFighters", + "PFVS": "Puffverse Token", "PFY": "Portify", "PG": "Pepe Grow", "PGALA": "pGALA", @@ -12018,6 +12184,7 @@ "POPG": "POPG", "POPGOAT": "Goatseus Poppimus", "POPK": "POPKON", + "POPMART": "POP MART", "POPO": "popo", "POPOETH": "POPO", "POPSICLE": "Popsicle Finance", @@ -12288,7 +12455,8 @@ "PUX": "pukkamex", "PVC": "PVC Meta", "PVFYBO": "JRVGCUPVSC", - "PVP": "PVPChain", + "PVP": "PvP", + "PVPCHAIN": "PVPChain", "PVT": "Pivot Token", "PVU": "Plant vs Undead Token", "PWAR": "PolkaWar", @@ -12394,6 +12562,7 @@ "QRP": "Cryptics", "QRT": "Qrkita Token", "QRX": "QuiverX", + "QSHX": "Queen Sherex", "QSLV": "Quicksilver coin", "QSP": "Quantstamp", "QSR": "Quasar", @@ -12409,6 +12578,7 @@ "QTO": "QToken", "QTUM": "QTUM", "QTZ": "Quartz", + "QU3": "QU3ai", "QUA": "Quantum Tech", "QUAC": "QUACK", "QUACK": "Rich Quack", @@ -12515,6 +12685,7 @@ "RATECOIN": "Ratecoin", "RATING": "DPRating", "RATIO": "Ratio Governance Token", + "RATO": "Rato The Rat", "RATS": "Rats", "RATWIF": "RatWifHat", "RAVE": "Ravendex", @@ -12573,10 +12744,11 @@ "RDEX": "Orders.Exchange", "RDF": "ReadFi", "RDGX": "R-DEE Protocol", + "RDMP": "Roadmap Coin", "RDN": "Raiden Network Token", "RDNT": "Radiant Capital", "RDNTV1": "Radiant Capital v1", - "RDO": "Rodeo Finance", + "RDO": "RDO Token", "RDOG": "Repost Dog", "RDPX": "Dopex Rebate Token", "RDR": "Rise of Defenders", @@ -12693,11 +12865,13 @@ "REQ": "Request Network", "RES": "Resistance", "RESCUE": "Rescue", + "RESOLV": "Resolv", "REST": "Restore", "RET": "Renewable Energy", "RETA": "Realital Metaverse", "RETAIL": "Retail.Global", "RETAR": "Retard Finder Coin", + "RETARD": "retardcoin", "RETARDIA": "RETARDIA", "RETARDIO": "RETARDIO", "RETH": "Rocket Pool ETH", @@ -12803,6 +12977,7 @@ "RISEP": "Rise Protocol", "RISEVISION": "Rise", "RISITA": "Risitas", + "RITA": "Rita Elite Order", "RITE": "ritestream", "RITO": "Ritocoin", "RITZ": "Ritz.Game", @@ -12850,7 +13025,7 @@ "RNDX": "Round X", "RNEAR": "Near (Rainbow Bridge)", "RNS": "RenosCoin", - "RNT": "OneRoot Network", + "RNT": "REAL NIGGER TATE", "RNTB": "BitRent", "RNX": "ROONEX", "ROAD": "ROAD", @@ -12878,6 +13053,7 @@ "ROCKYCOIN": "ROCKY", "ROCO": "ROCO FINANCE", "RODAI": "ROD.AI", + "RODEO": "Rodeo Finance", "ROE": "Rover Coin", "ROG": "ROGin AI", "ROGER": "ROGER", @@ -12885,6 +13061,7 @@ "ROK": "Rockchain", "ROKM": "Rocket Ma", "ROKO": "Roko", + "ROLLSROYCE": "RollsRoyce", "ROLS": "RollerSwap", "ROM": "ROMCOIN", "ROME": "Rome", @@ -12925,6 +13102,7 @@ "ROUTEV1": "Router Protocol v1", "ROUTINE": "Morning Routine", "ROVI": "ROVI", + "ROVR": "ROVR Network", "ROW": "Rage On Wheels", "ROWAN": "Sifchain", "ROX": "Robotina", @@ -12961,6 +13139,7 @@ "RSG": "RSG TOKEN", "RSIC": "RSIC•GENESIS•RUNE", "RSIN": "Roketsin", + "RSO": "Real Sociedad Fan Token", "RSPN": "Respan", "RSR": "Reserve Rights", "RSRV": "Reserve", @@ -13049,6 +13228,7 @@ "RXCG": "RXCGames", "RXD": "Radiant", "RXO": "RocketXRP Official", + "RXR": "RXR Coin", "RXT": "RIMAUNANGIS", "RYAN": "OFFICIAL RYAN", "RYC": "RoyalCoin", @@ -13130,7 +13310,7 @@ "SAMMY": "Samoyed", "SAMO": "Samoyedcoin", "SAMS": "Samsara.Build", - "SAN": "Santiment", + "SAN": "San Chan", "SANA": "Storage Area Network Anywhere", "SANCHO": "Sancho", "SAND": "The Sandbox", @@ -13144,6 +13324,7 @@ "SANTA": "SANTA CHRISTMAS INU", "SANTAGROK": "Santa Grok", "SANTAHAT": "SANTA HAT", + "SANTI": "Santiment", "SANTOS": "Santos FC Fan Token", "SAO": "Sator", "SAP": "SwapAll", @@ -13161,15 +13342,17 @@ "SATA": "Signata", "SATAN": "MrBeast's Cat", "SATO": "Atsuko Sato", + "SATOEXCHANGE": "SatoExchange Token", "SATOPAY": "SatoPay", "SATORI": "Satori Network", "SATOSHINAKAMOTO": "Satoshi Nakamoto", + "SATOTHEDOG": "Sato The Dog", "SATOX": "Satoxcoin", "SATOZ": "Satozhi", "SATS": "SATS (Ordinals)", "SATSALL": "ALL BEST ICO SATOSHI", "SATT": "SaTT", - "SATX": "SatoExchange Token", + "SATX": "SATX", "SAUBER": "Alfa Romeo Racing ORLEN Fan Token", "SAUCE": "SaucerSwap", "SAUCEINU": "SAUCEINU", @@ -13182,11 +13365,13 @@ "SAVEOCEAN": "Save The Ocean", "SAVG": "SAVAGE", "SAVM": "SatoshiVM", + "SAVVA": "SAVVA", "SAY": "SAY Coin", "SB": "DragonSB", "SBA": "simplyBrand", "SBABE": "SNOOPYBABE", "SBAE": "Salt Bae For The People", + "SBB": "Slim Beautiful Bill", "SBC": "StableCoin", "SBCC": "Smart Block Chain City", "SBCH": "Smart Bitcoin Cash", @@ -13298,12 +13483,14 @@ "SDX": "SwapDEX", "SEAGULL": "SEAGULL SAM", "SEAIO": "Second Exchange Alliance", - "SEAL": "Seal Finance", + "SEAL": "Seal", + "SEALFINANCE": "Seal Finance", "SEALN": "Seal Network", "SEAM": "Seamless Protocol", "SEAMLESS": "SeamlessSwap", "SEAN": "Starfish Finance", - "SEAT": "SeatlabNFT", + "SEAT": "Seamans Token", + "SEATLABNFT": "SeatlabNFT", "SEBA": "Seba", "SEC": "SecureCryptoPayments", "SECO": "Serum Ecosystem Token", @@ -13660,6 +13847,7 @@ "SJCX": "StorjCoin", "SKAI": "Skillful AI", "SKAIN": "SKAINET", + "SKATE": "Skate", "SKB": "SkullBuzz", "SKBDI": "Skibidi Toilet", "SKC": "Skeincoin", @@ -13702,6 +13890,7 @@ "SKYCOIN": "Skycoin", "SKYFT": "SKYFchain", "SKYM": "SkyMap", + "SKYOPS": "Skyops", "SKYRIM": "Skyrim Finance", "SKYX": "SKUYX", "SLA": "SUPERLAUNCH", @@ -13845,7 +14034,8 @@ "SNG": "SINERGIA", "SNGLS": "SingularDTV", "SNGT": "SNG Token", - "SNIBBU": "Snibbu The Crab", + "SNIBBU": "Snibbu", + "SNIBBUTHEC": "Snibbu The Crab", "SNIFT": "StarryNift", "SNIP": "LyrnAI", "SNIPPEPE": "SNIPING PEPE", @@ -13934,6 +14124,7 @@ "SOLAV": "SOLAV TOKEN", "SOLBET": "SOL STREET BETS", "SOLBO": "SolBoss", + "SOLBOX": "SolBox", "SOLBULL": "SOLBULL", "SOLC": "SolCard", "SOLCASH": "SOLCash", @@ -14000,12 +14191,14 @@ "SONNE": "Sonne Finance", "SONOF": "Son of Solana", "SONOR": "SonorusToken", - "SOON": "SOON", + "SOON": "SOON Token", "SOONAVERSE": "Soonaverse", "SOONCOIN": "SoonCoin", + "SOONTOKEN": "SOON", "SOOTCASE": "I like my sootcase", "SOP": "SoPay", "SOPH": "Sophon", + "SOPHIA": "SophiaVerse", "SOPHON": "Sophon (Atomicals)", "SOR": "Sorcery", "SORA": "Sora Validator Token", @@ -14173,6 +14366,7 @@ "SQUIDGROWV1": "SquidGrow v1", "SQUIDV1": "Squid Game v1", "SQUIDW": "Squidward Coin", + "SQUIRT": "SQUIRTLE", "SQUOGE": "DogeSquatch", "SR30": "SatsRush", "SRBP": "Super Rare Ball Potion", @@ -14348,7 +14542,7 @@ "STONE": "Stone Token", "STONEDE": "Stone DeFi", "STONK": "STONK", - "STONKS": "HarryPotterObamaWallStreetBets10Inu", + "STONKS": "STONKS", "STOP": "LETSTOP", "STOR": "Self Storage Coin", "STORE": "Bit Store", @@ -14427,6 +14621,7 @@ "SUDO": "sudoswap", "SUEDE": "Johnny Suede", "SUGAR": "Sugar Exchange", + "SUGARB": "SugarBlock", "SUI": "Sui", "SUIA": "SUIA", "SUIAGENT": "aiSUI", @@ -14483,6 +14678,7 @@ "SUPEROETHB": "Super OETH", "SUPERT": "Super Trump", "SUPERTX": "SuperTX", + "SUPFRIEND": "SuperFriend", "SUPR": "SuperDapp", "SUPRA": "Supra", "SUPREMEFINANCE": "Hype", @@ -14497,6 +14693,7 @@ "SUSDX": "Staked USDX", "SUSHI": "Sushi", "SUSX": "Savings USX", + "SUT": "SuperTrust", "SUTEKU": "Suteku", "SUTER": "Suterusu", "SUWI": "suwi", @@ -14618,12 +14815,14 @@ "SYS": "Syscoin", "SZCB": "Zugacoin", "T": "Threshold Network Token", + "T1": "Trump Mobile", "T23": "T23", "T99": "Tethereum", "TAAS": "Token as a Service", "TAB": "MollyCoin", "TABOO": "Taboo Token", "TAC": "Traceability Chain", + "TACC": "TACC", "TACHYON": "Tachyon Protocol", "TAD": "Tadpole", "TADA": "Ta-da", @@ -14664,6 +14863,7 @@ "TAOTOOLS": "TAOTools", "TAP": "TAP FANTASY", "TAPC": "Tap Coin", + "TAPCOIN": "TAP FANTASY", "TAPPINGCOIN": "TappingCoin", "TAPROOT": "Taproot Exchange", "TAPS": "TapSwap", @@ -14672,17 +14872,20 @@ "TARAL": "TARALITY", "TARD": "Tard", "TARDI": "Tardi", + "TARGETCOIN": "TargetCoin", "TARI": "Tari World", "TAROT": "Tarot", "TAROTV1": "Tarot v1", "TARP": "Totally A Rug Pull", "TAS": "TARUSH", "TASH": "Smart Trip Platform", + "TASSHUB": "TASS HUB", "TASTE": "TasteNFT", "TAT": "Tatcoin", "TATA": "TATA Coin", - "TATE": "Tate", + "TATE": "Tate Terminal", "TATES": "Tate Stop", + "TATETOKENETH": "Tate", "TATSU": "Taτsu", "TAU": "Lamden Tau", "TAUC": "Taurus Coin", @@ -14763,7 +14966,7 @@ "TEITEI": "TeiTei", "TEK": "TekCoin", "TEL": "Telcoin", - "TELE": "Miracle Tele", + "TELE": "Tele", "TELEBTC": "teleBTC", "TELEPORT": "Teleport System Token", "TELL": "Tellurion", @@ -14824,6 +15027,7 @@ "TFI": "TrustFi Network Token", "TFL": "True Flip Lottery", "TFLOW": "TradeFlow", + "TFNY": "TFNY", "TFS": "TFS Token", "TFT": "The Famous Token", "TFUEL": "Theta Fuel", @@ -14833,7 +15037,7 @@ "TGPT": "Trading GPT", "TGRAM": "TG20 TGram", "TGRASS": "Top Grass Club", - "TGT": "TargetCoin", + "TGT": "Tokyo Games Token", "TGW": "The Green World", "TH": "Team Heretics Fan Token", "THALES": "Thales", @@ -14898,6 +15102,7 @@ "TI": "Titanium22", "TIA": "Celestia", "TIANHE": "Tianhe", + "TIBBIR": "Ribbita", "TIC": "TrueInvestmentCoin", "TICO": "Tico", "TIDAL": "Tidal Finance", @@ -14911,6 +15116,7 @@ "TIGER": "TIGER", "TIGERC": "TigerCash", "TIGERMOON": "TigerMoon", + "TIGERSHARK": "Tiger Shark", "TIGRA": "Tigra", "TIGRES": "Tigres Fan Token", "TIIM": "TriipMiles", @@ -14938,8 +15144,9 @@ "TIPSY": "TipsyCoin", "TIT": "TittieCoin", "TITA": "Titan Hunters", - "TITAN": "TitanSwap", + "TITAN": "SATOSHI•RUNE•TITAN (Runes)", "TITANO": "Titano", + "TITANSWAP": "TitanSwap", "TITANX": "TitanX", "TITC": "TitCoin", "TITCOIN": "titcoin", @@ -15022,8 +15229,9 @@ "TOLO": "Tolo Yacoloco", "TOLYCAT": "Toly's Cat", "TOM": "TOM Finance", - "TOMA": "TomaInfo", + "TOMA": "Tomarket", "TOMAHAWKCOIN": "Tomahawkcoin", + "TOMAINFO": "TomaInfo", "TOMAN": "IRR", "TOMB": "Tomb", "TOMC": "TOM CAT", @@ -15105,6 +15313,7 @@ "TPU": "TensorSpace", "TPV": "TravGoPV", "TPY": "Thrupenny", + "TQ": "TonQuestion", "TQRT": "TokoQrt", "TR3": "Tr3zor", "TRA": "Trabzonspor Fan Token", @@ -15149,6 +15358,7 @@ "TREE": "Tree", "TREEB": "Retreeb", "TREMP": "Doland Tremp", + "TRENCHER": "Trencher", "TRESTLE": "TRESTLE", "TRET": "Tourist Review", "TRG": "The Rug Game", @@ -15164,9 +15374,11 @@ "TRICKLE": "Trickle", "TRIG": "Trigger", "TRINI": "Trinity Network Credit", - "TRIO": "Tripio", + "TRIO": "TRIO", "TRIPAD": "TripAdvisor, Inc.", + "TRIPIO": "Tripio", "TRIPPKI": "Trippki", + "TRISIG": "TRI SIGMA", "TRITON": "Triton", "TRIVIA": "Trivians", "TRIX": "TriumphX", @@ -15183,6 +15395,7 @@ "TROLLHEIM": "Trollheim", "TROLLICTO": "TROLLI CTO", "TROLLMODE": "TROLL MODE", + "TROLLRUN": "TROLL", "TROLLS": "trolls in a memes world", "TRONDOG": "TronDog", "TRONI": "Tron Inu", @@ -15317,6 +15530,7 @@ "TUDA": "Tutor's Diary", "TUF": "TUF Token", "TUGOU": "TuGou", + "TUKI": "Tuki", "TULIP": "Tulip Protocol", "TUNA": "TUNACOIN", "TUNE": "Bitune", @@ -15365,6 +15579,7 @@ "TX20": "Trex20", "TXA": "TXA", "TXAG": "tSILVER", + "TXAGV1": "AurusSILVER", "TXAI": "TrumpX Ai", "TXAU": "tGOLD", "TXBIT": "Txbit Token", @@ -15390,10 +15605,12 @@ "TYT": "Tianya Token", "TZC": "TrezarCoin", "TZKI": "Tsuzuki Inu", + "TZPEPE": "Tezos Pepe", "TZU": "Sun Tzu", "U": "Unidef", "U2U": "U2U Network", "U8D": "Universal Dollar", + "UA1": "UA1", "UAEC": "United Arab Emirates Coin", "UAHG": "UAHg", "UAT": "UltrAlpha", @@ -15624,6 +15841,7 @@ "USDE": "Ethena USDe", "USDEBT": "USDEBT", "USDEX": "eToro US Dollar", + "USDF": "Falcon USD", "USDFL": "USDFreeLiquidity", "USDG": "Global Dollar", "USDGLOBI": "Globiance USD Stablecoin", @@ -15653,6 +15871,7 @@ "USDTV": "TetherTV", "USDTZ": "USDtez", "USDU": "Upper Dollar", + "USDUC": "Unstable Coin", "USDV": "Verified USD", "USDW": "USD DWIN", "USDX": "USDX Stablecoin", @@ -15660,6 +15879,7 @@ "USDZ": "Zedxion USDZ", "USE": "Usechain Token", "USEDCAR": "A Gently Used 2001 Honda", + "USELESS": "USELESS COIN", "USETH": "USETH", "USG": "USGold", "USH": "unshETHing_Token", @@ -15810,6 +16030,7 @@ "VELAR": "Velar", "VELO": "Velo", "VELOD": "Velodrome Finance", + "VELODV1": "Velodrome v1", "VELOX": "Velox", "VELOXPROJECT": "Velox", "VEMP": "vEmpire DDAO", @@ -15831,7 +16052,8 @@ "VERO": "VEROPAD", "VERSA": "Versa Token", "VERSACE": "VERSACE", - "VERSE": "Verse", + "VERSE": "Verse World", + "VERSEBIT": "Verse", "VERT": "VERT", "VERTAI": "Vertical AI", "VERTEX": "Vertex", @@ -15990,7 +16212,7 @@ "VOX": "Vox.Finance", "VOXEL": "Voxies", "VOY": "enVoy DeFi", - "VOYA": "Voyacoin", + "VOYACOIN": "Voyacoin", "VP": "Torah Network", "VPAD": "VLaunch", "VPK": "Vulture Peak", @@ -16032,7 +16254,8 @@ "VSTA": "Vesta Finance", "VSTR": "Vestra DAO", "VSUI": "Volo Staked SUI", - "VSX": "Vsync", + "VSX": "Versus-X", + "VSYNC": "Vsync", "VSYS": "V Systems", "VT": "Virtual Tourist", "VTC": "Vertcoin", @@ -16087,6 +16310,7 @@ "W3S": "Web3Shot", "W3W": "Web3 Whales", "W8BIT": "8Bit Chain", + "WA7A5": "Wrapped A7A5", "WAAC": "Wrapped AyeAyeCoin", "WAB": "WABnetwork", "WABI": "WABI", @@ -16148,7 +16372,8 @@ "WAT0X63": "Wat", "WATC": "WATCoin", "WATCH": "Yieldwatch", - "WATER": "WATER", + "WATER": "Waterfall", + "WATERCOIN": "WATER", "WATT": "WATTTON", "WAVAX": "Wrapped AVAX", "WAVES": "Waves", @@ -16314,7 +16539,8 @@ "WHIRL": "Whirl Finance", "WHISK": "Whiskers", "WHISKEY": "WHISKEY", - "WHITE": "Whiteheart", + "WHITE": "WhiteRock", + "WHITEHEART": "Whiteheart", "WHL": "WhaleCoin", "WHO": "Truwho", "WHOLE": "Whole Network", @@ -16394,6 +16620,7 @@ "WKC": "Wiki Cat", "WKD": "Wakanda Inu", "WKEYDAO": "WebKey DAO", + "WLAI": "Weblume AI", "WLD": "Worldcoin", "WLF": "Wolfs Group", "WLFI": "World Liberty Financial", @@ -16474,6 +16701,7 @@ "WOOF": "WoofWork.io", "WOOFY": "Woofy", "WOOL": "Wolf Game Wool", + "WOOLLY": "Miniature Woolly Mammoth", "WOONK": "Woonkly", "WOOO": "wooonen", "WOOOOO": "Wooooo! Coin", @@ -16519,6 +16747,7 @@ "WRTCOIN": "WRTcoin", "WRX": "WazirX", "WRZ": "Weriz", + "WS": "Wrapped Sonic", "WSB": "WallStreetBets DApp", "WSBABY": "Wall Street Baby", "WSBC": "WSB Coin", @@ -16601,6 +16830,8 @@ "X": "X Empire", "X2": "X2Coin", "X2Y2": "X2Y2", + "X314": "X314", + "X314V1": "X314 v1", "X33": "Shadow Liquid Staking Token", "X42": "X42 Protocol", "X7": "X7", @@ -16628,6 +16859,7 @@ "XAUR": "Xaurum", "XAUT": "Tether Gold", "XAVA": "Avalaunch", + "XAVIER": "Xavier: Renegade Angel", "XAYA": "XAYA", "XB": "XBANKING", "XBASE": "ETERBASE", @@ -16664,6 +16896,7 @@ "XCFX": "Nucleon", "XCG": "Xchange", "XCH": "Chia", + "XCHAT": "XChat", "XCHF": "CryptoFranc", "XCHNG": "Chainge Finance", "XCI": "Cannabis Industry Coin", @@ -16723,8 +16956,8 @@ "XFINANCE": "Xfinance", "XFIT": "Xfit", "XFLOKI": "XFLOKI", - "XFT": "Fantasy Cash", - "XFTC": "Offshift", + "XFT": "Offshift", + "XFTV1": "Offshift v1", "XFUEL": "XFUEL", "XFUND": "xFund", "XFYI": "XCredit", @@ -16810,6 +17043,7 @@ "XNO": "Xeno Token", "XNODE": "XNODE", "XNP": "ExenPay Token", + "XNPCS": "NPCS AI", "XNS": "Insolar", "XNT": "Exenium", "XNV": "Nerva", @@ -16824,6 +17058,7 @@ "XOXO": "XO Protocol", "XP": "Xphere", "XPA": "XPA", + "XPARTY": "X Party", "XPAT": "Bitnation Pangea", "XPAY": "Wallet Pay", "XPB": "Pebble Coin", @@ -16880,6 +17115,7 @@ "XRPAYNET": "XRPayNet", "XRPC": "Xrp Classic", "XRPCHAIN": "Ripple Chain", + "XRPCV1": "XRP Classic v1", "XRPEPE": "XRPEPE", "XRPH": "XRP Healthcare", "XRS": "Xrius", @@ -16987,6 +17223,7 @@ "YAY": "YAY Games", "YAYCOIN": "YAYcoin", "YBC": "YbCoin", + "YBDBD": "YBDBD", "YBO": "Young Boys Fan Token", "YBR": "YieldBricks", "YCC": "Yuan Chain Coin", @@ -17062,6 +17299,7 @@ "YOD": "Year of the Dragon", "YODA": "YODA", "YODE": "YodeSwap", + "YOEX": "YO EXCHANGE", "YOLO": "YoloNolo", "YOM": "YOM", "YONNY": "YONNY", @@ -17134,9 +17372,10 @@ "ZAMZAM": "ZAMZAM", "ZANO": "Zano", "ZAO": "zkTAO", - "ZAP": "Zap", + "ZAP": "ZAP", "ZAPI": "Zapicorn", "ZAPO": "Zapo AI", + "ZAPTOKEN": "Zap", "ZARP": "ZARP Stablecoin", "ZARX": "eToro South African Rand", "ZASH": "ZIMBOCASH", @@ -17187,6 +17426,7 @@ "ZELIX": "ZELIX", "ZEN": "Horizen", "ZENAD": "Zenad", + "ZENAI": "Zen AI", "ZENC": "Zenc Coin", "ZEND": "zkLend", "ZENF": "Zenland", @@ -17200,6 +17440,7 @@ "ZEP": "Zeppelin Dao", "ZEPH": "Zephyr Protocol", "ZER": "Zero", + "ZERC": "zkRace Coin", "ZEREBRO": "Zerebro", "ZERO": "ZeroLend", "ZEROB": "ZeroBank", From 960b871aa5c7d29e1190d066eb07629b509fde65 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 24 Jun 2025 19:56:47 +0200 Subject: [PATCH 52/56] Feature/add new badge to settings of admin page navigation (#5020) * Add new badge --- apps/client/src/app/pages/admin/admin-page.component.ts | 6 +++++- apps/client/src/app/pages/admin/admin-page.html | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/client/src/app/pages/admin/admin-page.component.ts b/apps/client/src/app/pages/admin/admin-page.component.ts index 02aa8ba18..7c8ebfdae 100644 --- a/apps/client/src/app/pages/admin/admin-page.component.ts +++ b/apps/client/src/app/pages/admin/admin-page.component.ts @@ -31,7 +31,11 @@ export class AdminPageComponent implements OnDestroy, OnInit { }, { iconName: 'settings-outline', - label: internalRoutes.adminControl.subRoutes.settings.title, + label: + internalRoutes.adminControl.subRoutes.settings.title + + '' + + $localize`new` + + '', routerLink: internalRoutes.adminControl.subRoutes.settings.routerLink }, { diff --git a/apps/client/src/app/pages/admin/admin-page.html b/apps/client/src/app/pages/admin/admin-page.html index af3b24b0a..43509a9ad 100644 --- a/apps/client/src/app/pages/admin/admin-page.html +++ b/apps/client/src/app/pages/admin/admin-page.html @@ -23,7 +23,7 @@ [name]="tab.iconName" [size]="deviceType === 'mobile' ? 'large' : 'small'" /> -
    {{ tab.label }}
    +
    } } From 84c4d79a74f4521d6a72a0b70f4651185ed0b0b1 Mon Sep 17 00:00:00 2001 From: Tobias Kugel <78074722+tobikugel@users.noreply.github.com> Date: Tue, 24 Jun 2025 14:57:59 -0300 Subject: [PATCH 53/56] Feature/Set up account cluster risks localization (Current Investment) (#5012) * Set up localization * Update changelog --- CHANGELOG.md | 1 + .../src/app/portfolio/portfolio.service.ts | 2 + apps/api/src/app/user/user.service.ts | 9 ++- .../current-investment.ts | 63 +++++++++++-------- apps/client/src/app/pages/i18n/i18n-page.html | 10 +++ 5 files changed, 57 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b37a2ca4..af90da89a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Set up the language localization for the static portfolio analysis rule: _Account Cluster Risks_ (Current Investment) - Extended the data providers management of the admin control panel by the online status ### Changed diff --git a/apps/api/src/app/portfolio/portfolio.service.ts b/apps/api/src/app/portfolio/portfolio.service.ts index 623a94f97..aed8e0acb 100644 --- a/apps/api/src/app/portfolio/portfolio.service.ts +++ b/apps/api/src/app/portfolio/portfolio.service.ts @@ -1260,6 +1260,8 @@ export class PortfolioService { [ new AccountClusterRiskCurrentInvestment( this.exchangeRateDataService, + this.i18nService, + userSettings.language, accounts ), new AccountClusterRiskSingleAccount( diff --git a/apps/api/src/app/user/user.service.ts b/apps/api/src/app/user/user.service.ts index 3f4dfc35e..46b46bce2 100644 --- a/apps/api/src/app/user/user.service.ts +++ b/apps/api/src/app/user/user.service.ts @@ -259,9 +259,12 @@ export class UserService { (user.Settings.settings as UserSettings).xRayRules = { AccountClusterRiskCurrentInvestment: - new AccountClusterRiskCurrentInvestment(undefined, {}).getSettings( - user.Settings.settings - ), + new AccountClusterRiskCurrentInvestment( + undefined, + undefined, + undefined, + {} + ).getSettings(user.Settings.settings), AccountClusterRiskSingleAccount: new AccountClusterRiskSingleAccount( undefined, undefined, diff --git a/apps/api/src/models/rules/account-cluster-risk/current-investment.ts b/apps/api/src/models/rules/account-cluster-risk/current-investment.ts index 76b7e2f94..501c9b803 100644 --- a/apps/api/src/models/rules/account-cluster-risk/current-investment.ts +++ b/apps/api/src/models/rules/account-cluster-risk/current-investment.ts @@ -1,20 +1,22 @@ import { RuleSettings } from '@ghostfolio/api/models/interfaces/rule-settings.interface'; import { Rule } from '@ghostfolio/api/models/rule'; import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service'; -import { - PortfolioDetails, - PortfolioPosition, - UserSettings -} from '@ghostfolio/common/interfaces'; +import { I18nService } from '@ghostfolio/api/services/i18n/i18n.service'; +import { PortfolioDetails, UserSettings } from '@ghostfolio/common/interfaces'; + +import { Account } from '@prisma/client'; export class AccountClusterRiskCurrentInvestment extends Rule { private accounts: PortfolioDetails['accounts']; public constructor( protected exchangeRateDataService: ExchangeRateDataService, + private i18nService: I18nService, + languageCode: string, accounts: PortfolioDetails['accounts'] ) { super(exchangeRateDataService, { + languageCode, key: AccountClusterRiskCurrentInvestment.name }); @@ -23,54 +25,62 @@ export class AccountClusterRiskCurrentInvestment extends Rule { public evaluate(ruleSettings: Settings) { const accounts: { - [symbol: string]: Pick & { + [symbol: string]: Pick & { investment: number; }; } = {}; for (const [accountId, account] of Object.entries(this.accounts)) { accounts[accountId] = { - name: account.name, - investment: account.valueInBaseCurrency + investment: account.valueInBaseCurrency, + name: account.name }; } - let maxItem: (typeof accounts)[0]; + let maxAccount: (typeof accounts)[0]; let totalInvestment = 0; for (const account of Object.values(accounts)) { - if (!maxItem) { - maxItem = account; + if (!maxAccount) { + maxAccount = account; } // Calculate total investment totalInvestment += account.investment; // Find maximum - if (account.investment > maxItem?.investment) { - maxItem = account; + if (account.investment > maxAccount?.investment) { + maxAccount = account; } } - const maxInvestmentRatio = maxItem?.investment / totalInvestment || 0; + const maxInvestmentRatio = maxAccount?.investment / totalInvestment || 0; if (maxInvestmentRatio > ruleSettings.thresholdMax) { return { - evaluation: `Over ${ - ruleSettings.thresholdMax * 100 - }% of your current investment is at ${maxItem.name} (${( - maxInvestmentRatio * 100 - ).toPrecision(3)}%)`, + evaluation: this.i18nService.getTranslation({ + id: 'rule.accountClusterRiskCurrentInvestment.false', + languageCode: this.getLanguageCode(), + placeholders: { + maxAccountName: maxAccount.name, + maxInvestmentRatio: (maxInvestmentRatio * 100).toPrecision(3), + thresholdMax: ruleSettings.thresholdMax * 100 + } + }), value: false }; } return { - evaluation: `The major part of your current investment is at ${ - maxItem.name - } (${(maxInvestmentRatio * 100).toPrecision(3)}%) and does not exceed ${ - ruleSettings.thresholdMax * 100 - }%`, + evaluation: this.i18nService.getTranslation({ + id: 'rule.accountClusterRiskCurrentInvestment.true', + languageCode: this.getLanguageCode(), + placeholders: { + maxAccountName: maxAccount.name, + maxInvestmentRatio: (maxInvestmentRatio * 100).toPrecision(3), + thresholdMax: ruleSettings.thresholdMax * 100 + } + }), value: true }; } @@ -88,7 +98,10 @@ export class AccountClusterRiskCurrentInvestment extends Rule { } public getName() { - return 'Investment'; + return this.i18nService.getTranslation({ + id: 'rule.accountClusterRiskCurrentInvestment', + languageCode: this.getLanguageCode() + }); } public getSettings({ baseCurrency, xRayRules }: UserSettings): Settings { diff --git a/apps/client/src/app/pages/i18n/i18n-page.html b/apps/client/src/app/pages/i18n/i18n-page.html index 6ba581455..20fa23f9a 100644 --- a/apps/client/src/app/pages/i18n/i18n-page.html +++ b/apps/client/src/app/pages/i18n/i18n-page.html @@ -11,6 +11,16 @@ performance, portfolio, software, stock, trading, wealth, web3
  • My Account
  • +
  • Investment
  • +
  • + Over ${thresholdMax}% of your current investment is at + ${maxAccountName} (${maxInvestmentRatio}%) +
  • +
  • + The major part of your current investment is at + ${maxAccountName} (${maxInvestmentRatio}%) and does + not exceed ${thresholdMax}% +
  • Single Account
  • Your net worth is managed by a single account From bad3f87957625da983d2dcd06b74d4813d9ec147 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 24 Jun 2025 19:58:31 +0200 Subject: [PATCH 54/56] Feature/improve style in admin settings component (#5014) * Improve style --- .../components/admin-settings/admin-settings.component.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 d50fa92c3..cb93a1e13 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 @@ -26,7 +26,9 @@ > Get Access -
    or
    +
    + or +
    Date: Tue, 24 Jun 2025 20:34:27 +0200 Subject: [PATCH 55/56] Feature/update locales (#5022) * Update locales * Update translation --------- Co-authored-by: github-actions[bot] Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> --- apps/client/src/locales/messages.ca.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.de.xlf | 82 +++++++++++++++++-------- apps/client/src/locales/messages.es.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.fr.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.it.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.nl.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.pl.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.pt.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.tr.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.uk.xlf | 78 ++++++++++++++++------- apps/client/src/locales/messages.xlf | 74 +++++++++++++++------- apps/client/src/locales/messages.zh.xlf | 78 ++++++++++++++++------- 12 files changed, 658 insertions(+), 278 deletions(-) diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index e7694e285..6914f5f80 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -751,7 +751,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1075,7 +1075,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -1883,7 +1883,7 @@ Plataformes apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -1891,7 +1891,7 @@ Etiquetes apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2519,7 +2519,7 @@ o apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -3808,7 +3808,7 @@ Programari de gestió patrimonial de codi obert apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -5681,7 +5681,7 @@ Asset Profiles apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -6273,7 +6273,7 @@ Valid until apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6881,7 +6881,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6987,7 +6987,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6995,7 +6995,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7003,7 +7003,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7597,7 +7597,7 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7605,7 +7605,7 @@ No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7613,7 +7613,7 @@ An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7621,7 +7621,7 @@ Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7629,7 +7629,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7637,7 +7637,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7693,7 +7693,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7701,7 +7701,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7709,7 +7709,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7767,7 +7767,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7775,7 +7775,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7810,6 +7810,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 214f4be5b..01cfda12a 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -146,7 +146,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -398,7 +398,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -406,7 +406,7 @@ Anlageprofile apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -1090,7 +1090,7 @@ oder apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1179,7 +1179,7 @@ Investment - Einlage + Investition apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html 152 @@ -1338,7 +1338,7 @@ Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3366,7 +3366,7 @@ Gültig bis apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3926,7 +3926,7 @@ Plattformen apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -5676,7 +5676,7 @@ Open Source Software für die Vermögensverwaltung apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -5881,7 +5881,7 @@ Investment - Einlage + Investition apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts 56 @@ -6905,7 +6905,7 @@ API-Schlüssel setzen apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -7011,7 +7011,7 @@ von apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -7019,7 +7019,7 @@ täglichen Anfragen apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7027,7 +7027,7 @@ API-Schlüssel löschen apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7597,7 +7597,7 @@ Notfallfonds: Einrichtung apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7605,7 +7605,7 @@ Es wurde kein Notfallfonds eingerichtet apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7613,7 +7613,7 @@ Ein Notfallfonds wurde eingerichtet apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7621,7 +7621,7 @@ Gebührenverhältnis apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7629,7 +7629,7 @@ Die Gebühren übersteigen ${thresholdMax}% deiner ursprünglichen Investition (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7637,7 +7637,7 @@ Die Gebühren übersteigen ${thresholdMax}% deiner ursprünglichen Investition (${feeRatio}%) nicht apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7693,7 +7693,7 @@ Einzelkonto apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7701,7 +7701,7 @@ Dein Gesamtvermögen wird von einem einzigen Konto verwaltet apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7709,7 +7709,7 @@ Dein Gesamtvermögen wird von ${accountsLength} Konten verwaltet apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7767,7 +7767,7 @@ Mehr erfahren apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7775,7 +7775,7 @@ neu apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7810,6 +7810,38 @@ 5 + + new + neu + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investition + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Über ${thresholdMax}% deiner aktuellen Investition ist bei ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + Der Hauptteil deiner aktuellen Investition ist bei ${maxAccountName} (${maxInvestmentRatio}%) und übersteigt ${thresholdMax}% nicht + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 6faddefd3..6a442e524 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -147,7 +147,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -399,7 +399,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -407,7 +407,7 @@ Perfiles de activos. apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -1075,7 +1075,7 @@ o apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1323,7 +1323,7 @@ Etiquetas apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3351,7 +3351,7 @@ Válido hasta apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3903,7 +3903,7 @@ Plataformas apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -5653,7 +5653,7 @@ Software de gestión de patrimonio de código abierto apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -6882,7 +6882,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6988,7 +6988,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6996,7 +6996,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7004,7 +7004,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7598,7 +7598,7 @@ Fondo de Emergencia: Establecer apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7606,7 +7606,7 @@ No se ha creado ningún fondo de emergencia apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7614,7 +7614,7 @@ Se ha creado un fondo de emergencia apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7622,7 +7622,7 @@ Relación de tarifas apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7630,7 +7630,7 @@ Las tarifas superan el ${thresholdMax}% de su inversión inicial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7638,7 +7638,7 @@ Las tarifas no superan el ${thresholdMax}% de su inversión inicial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7694,7 +7694,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7702,7 +7702,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7710,7 +7710,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7768,7 +7768,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7776,7 +7776,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7811,6 +7811,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index d7d90414b..60148b120 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -154,7 +154,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -446,7 +446,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -462,7 +462,7 @@ Profils d’Actifs apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -926,7 +926,7 @@ Étiquettes apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1426,7 +1426,7 @@ ou apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -3350,7 +3350,7 @@ Valide jusqu’au apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3902,7 +3902,7 @@ Platformes apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -5652,7 +5652,7 @@ Logiciel libre de Gestion de Patrimoine apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -6881,7 +6881,7 @@ Définir clé API apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6987,7 +6987,7 @@ sur apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6995,7 +6995,7 @@ requêtes journalières apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7003,7 +7003,7 @@ Retirer la clé API apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7597,7 +7597,7 @@ Fonds d’urgence : Mise en place apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7605,7 +7605,7 @@ Aucun fonds d’urgence n’a été mis en place apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7613,7 +7613,7 @@ Un fonds d’urgence a été mis en place apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7621,7 +7621,7 @@ Ratio de frais apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7629,7 +7629,7 @@ Les frais dépassent ${thresholdMax}% de votre investissement initial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7637,7 +7637,7 @@ Les frais ne dépassent pas ${thresholdMax}% de votre investissement initial (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7693,7 +7693,7 @@ Compte Unique apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7701,7 +7701,7 @@ Votre patrimoine est géré par un compte unique apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7709,7 +7709,7 @@ Votre patrimoine est géré par ${accountsLength} comptes apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7767,7 +7767,7 @@ En savoir plus apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7775,7 +7775,7 @@ nouveau apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7810,6 +7810,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 8e5770c83..6b196879a 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -147,7 +147,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -399,7 +399,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -407,7 +407,7 @@ Profilo dell’asset apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -1075,7 +1075,7 @@ oppure apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1323,7 +1323,7 @@ Tag apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3351,7 +3351,7 @@ Valido fino a apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3903,7 +3903,7 @@ Piattaforme apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -5653,7 +5653,7 @@ Software Open Source per la gestione della tua ricchezza apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -6882,7 +6882,7 @@ Imposta API Key apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6988,7 +6988,7 @@ di apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6996,7 +6996,7 @@ richieste giornaliere apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7004,7 +7004,7 @@ Rimuovi API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7598,7 +7598,7 @@ Fondo di emergenza: istituito apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7606,7 +7606,7 @@ Non è stato istituito alcun fondo di emergenza apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7614,7 +7614,7 @@ È stato istituito un fondo di emergenza apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7622,7 +7622,7 @@ Rapporto tariffario apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7630,7 +7630,7 @@ Le commissioni superano il ${thresholdMax}% del tuo investimento iniziale (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7638,7 +7638,7 @@ Le commissioni non superano il ${thresholdMax}% del tuo investimento iniziale (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7694,7 +7694,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7702,7 +7702,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7710,7 +7710,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7768,7 +7768,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7776,7 +7776,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7811,6 +7811,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index e6c128ad1..276925ab8 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -146,7 +146,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -398,7 +398,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -406,7 +406,7 @@ Activa Profiel apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -1074,7 +1074,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1322,7 +1322,7 @@ Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3350,7 +3350,7 @@ Geldig tot apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3902,7 +3902,7 @@ Platforms apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -5652,7 +5652,7 @@ Open Source Vermogensbeheer Software apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -6881,7 +6881,7 @@ API-sleutel instellen apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6987,7 +6987,7 @@ van apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6995,7 +6995,7 @@ dagelijkse verzoeken apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7003,7 +7003,7 @@ Verwijder API-sleutel apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7597,7 +7597,7 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7605,7 +7605,7 @@ No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7613,7 +7613,7 @@ An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7621,7 +7621,7 @@ Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7629,7 +7629,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7637,7 +7637,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7693,7 +7693,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7701,7 +7701,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7709,7 +7709,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7767,7 +7767,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7775,7 +7775,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7810,6 +7810,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index 1a889695c..2339475d4 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -679,7 +679,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -975,7 +975,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -1715,7 +1715,7 @@ Platformy apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -1723,7 +1723,7 @@ Tagi apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2179,7 +2179,7 @@ lub apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -3443,7 +3443,7 @@ Oprogramowanie Open Source do Zarządzania Majątkiem apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -5156,7 +5156,7 @@ Profile aktywów apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -5684,7 +5684,7 @@ Ważność do apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6881,7 +6881,7 @@ Skonfiguruj klucz API apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6987,7 +6987,7 @@ z apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6995,7 +6995,7 @@ codzienne żądania apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7003,7 +7003,7 @@ Usuń klucz API apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7597,7 +7597,7 @@ Fundusz awaryjny: Utworzenie apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7605,7 +7605,7 @@ Nie utworzono funduszu awaryjnego apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7613,7 +7613,7 @@ Utworzono fundusz awaryjny apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7621,7 +7621,7 @@ Stosunek opłat apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7629,7 +7629,7 @@ Opłaty przekraczają ${thresholdMax}% początkowej inwestycji (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7637,7 +7637,7 @@ Opłaty nie przekraczają ${thresholdMax}% początkowej inwestycji (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7693,7 +7693,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7701,7 +7701,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7709,7 +7709,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7767,7 +7767,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7775,7 +7775,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7810,6 +7810,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 080c10d16..f755a694c 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -154,7 +154,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -446,7 +446,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -462,7 +462,7 @@ Perfil de Ativos apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -1306,7 +1306,7 @@ ou apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1626,7 +1626,7 @@ Marcadores apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -3350,7 +3350,7 @@ Válido até apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -3902,7 +3902,7 @@ Plataformas apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -5652,7 +5652,7 @@ Software de gerenciamento de patrimônio de código aberto apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -6881,7 +6881,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6987,7 +6987,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6995,7 +6995,7 @@ daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7003,7 +7003,7 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7597,7 +7597,7 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7605,7 +7605,7 @@ No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7613,7 +7613,7 @@ An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7621,7 +7621,7 @@ Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7629,7 +7629,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7637,7 +7637,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7693,7 +7693,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7701,7 +7701,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7709,7 +7709,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7767,7 +7767,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7775,7 +7775,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7810,6 +7810,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index f7aa11996..cf5f1f3d5 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -639,7 +639,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -915,7 +915,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -931,7 +931,7 @@ Varlık Profili apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -1455,7 +1455,7 @@ Etiketler apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1619,7 +1619,7 @@ Platformlar apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -2027,7 +2027,7 @@ veya apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -4580,7 +4580,7 @@ Geçerli tarih apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -5652,7 +5652,7 @@ Açık Kaynak Varlık Yönetim Yazılımı apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -6881,7 +6881,7 @@ API anahtarını ayarla apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6987,7 +6987,7 @@ ın apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6995,7 +6995,7 @@ günlük istekler apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7003,7 +7003,7 @@ API anahtarını kaldır apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7597,7 +7597,7 @@ Acil Durum Fonu: Kurulum apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7605,7 +7605,7 @@ Acil durum fonu oluşturulmadı apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7613,7 +7613,7 @@ Acil durum fonu kuruldu apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7621,7 +7621,7 @@ Ücret Oranı apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7629,7 +7629,7 @@ Ücretler, ilk yatırımınızın %${thresholdMax} kadarını aşıyor (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7637,7 +7637,7 @@ Ücretler, ilk yatırımınızın %${thresholdMax}’ını (${feeRatio}%) aşmaz apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7693,7 +7693,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7701,7 +7701,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7709,7 +7709,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7767,7 +7767,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7775,7 +7775,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7810,6 +7810,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 162ec6fa6..adc1da6ee 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -767,7 +767,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1099,7 +1099,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -1879,7 +1879,7 @@ Дійсне до apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -1891,7 +1891,7 @@ з apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -1899,7 +1899,7 @@ щоденних запитів apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -1907,7 +1907,7 @@ Вилучити ключ API apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -1915,7 +1915,7 @@ Встановити ключ API apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -1923,7 +1923,7 @@ Платформи apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -1931,7 +1931,7 @@ Теги apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1963,7 +1963,7 @@ або apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -4016,7 +4016,7 @@ Програмне забезпечення управління багатством з відкритим кодом apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -6295,7 +6295,7 @@ Профілі активів apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -7597,7 +7597,7 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7605,7 +7605,7 @@ No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7613,7 +7613,7 @@ An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7621,7 +7621,7 @@ Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7629,7 +7629,7 @@ The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7637,7 +7637,7 @@ The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7693,7 +7693,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7701,7 +7701,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7709,7 +7709,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7767,7 +7767,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7775,7 +7775,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7810,6 +7810,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 148c23605..95bd5aac2 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -651,7 +651,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -933,7 +933,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -1633,14 +1633,14 @@ Platforms apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 Tags apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2049,7 +2049,7 @@ or apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -3185,7 +3185,7 @@ Open Source Wealth Management Software apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -4742,7 +4742,7 @@ Asset Profiles apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -5220,7 +5220,7 @@ Valid until apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6224,7 +6224,7 @@ Set API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6326,7 +6326,7 @@ of apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6340,14 +6340,14 @@ Remove API key apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 daily requests apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -6841,42 +6841,42 @@ Emergency Fund: Set up apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 No emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 An emergency fund has been set up apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 Fee Ratio apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 The fees do exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 The fees do not exceed ${thresholdMax}% of your initial investment (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -6918,21 +6918,21 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -6977,7 +6977,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -6991,7 +6991,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7022,6 +7022,34 @@ 3 + + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index 6ba025490..11233248c 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -688,7 +688,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 44 + 46 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -984,7 +984,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 90 + 92 @@ -1724,7 +1724,7 @@ 平台 apps/client/src/app/components/admin-settings/admin-settings.component.html - 193 + 195 @@ -1732,7 +1732,7 @@ 标签 apps/client/src/app/components/admin-settings/admin-settings.component.html - 199 + 201 libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2188,7 +2188,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 29 + 30 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -3452,7 +3452,7 @@ 开源财富管理软件 apps/client/src/app/pages/i18n/i18n-page.html - 37 + 47 @@ -5197,7 +5197,7 @@ 资产概况 apps/client/src/app/components/admin-settings/admin-settings.component.html - 104 + 106 @@ -5741,7 +5741,7 @@ 有效期至 apps/client/src/app/components/admin-settings/admin-settings.component.html - 72 + 74 libs/ui/src/lib/membership-card/membership-card.component.html @@ -6882,7 +6882,7 @@ 设置 API 密钥 apps/client/src/app/components/admin-settings/admin-settings.component.html - 169 + 171 @@ -6988,7 +6988,7 @@ apps/client/src/app/components/admin-settings/admin-settings.component.html - 133 + 135 @@ -6996,7 +6996,7 @@ 每日请求 apps/client/src/app/components/admin-settings/admin-settings.component.html - 135 + 137 @@ -7004,7 +7004,7 @@ 移除 API 密钥 apps/client/src/app/components/admin-settings/admin-settings.component.html - 159 + 161 @@ -7598,7 +7598,7 @@ 应急资金:设置 apps/client/src/app/pages/i18n/i18n-page.html - 21 + 31 @@ -7606,7 +7606,7 @@ 未设置应急资金 apps/client/src/app/pages/i18n/i18n-page.html - 22 + 32 @@ -7614,7 +7614,7 @@ 已设置应急资金 apps/client/src/app/pages/i18n/i18n-page.html - 25 + 35 @@ -7622,7 +7622,7 @@ 费率 apps/client/src/app/pages/i18n/i18n-page.html - 28 + 38 @@ -7630,7 +7630,7 @@ 费用超过了您初始投资的 ${thresholdMax}% (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 29 + 39 @@ -7638,7 +7638,7 @@ 费用未超过您初始投资的 ${thresholdMax}% (${feeRatio}%) apps/client/src/app/pages/i18n/i18n-page.html - 33 + 43 @@ -7694,7 +7694,7 @@ Single Account apps/client/src/app/pages/i18n/i18n-page.html - 14 + 24 @@ -7702,7 +7702,7 @@ Your net worth is managed by a single account apps/client/src/app/pages/i18n/i18n-page.html - 15 + 25 @@ -7710,7 +7710,7 @@ Your net worth is managed by ${accountsLength} accounts apps/client/src/app/pages/i18n/i18n-page.html - 18 + 28 @@ -7768,7 +7768,7 @@ Learn more apps/client/src/app/components/admin-settings/admin-settings.component.html - 36 + 38 @@ -7776,7 +7776,7 @@ new apps/client/src/app/components/admin-settings/admin-settings.component.html - 65 + 67 @@ -7811,6 +7811,38 @@ 5 + + new + new + + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + + Investment + Investment + + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + Over ${thresholdMax}% of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) + + apps/client/src/app/pages/i18n/i18n-page.html + 15 + + + + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + The major part of your current investment is at ${maxAccountName} (${maxInvestmentRatio}%) and does not exceed ${thresholdMax}% + + apps/client/src/app/pages/i18n/i18n-page.html + 19 + + From d609b75254abcad048bc4de8a91d5d6db57a19bc Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 24 Jun 2025 20:36:27 +0200 Subject: [PATCH 56/56] Release 2.174.0 (#5023) --- CHANGELOG.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af90da89a..92519471a 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). -## Unreleased +## 2.174.0 - 2025-06-24 ### Added diff --git a/package-lock.json b/package-lock.json index 529e7082d..2e9fa968c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ghostfolio", - "version": "2.173.0", + "version": "2.174.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ghostfolio", - "version": "2.173.0", + "version": "2.174.0", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/package.json b/package.json index b340fc6ce..f0b23efb5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.173.0", + "version": "2.174.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio",