diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d86f2c5..0b470c12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Broken down the emergency fund by cash and assets +### Changed + +- Renamed queries to presets in the historical market data table of the admin control panel + ## 1.290.0 - 2023-07-16 ### Added diff --git a/apps/api/src/app/admin/admin.controller.ts b/apps/api/src/app/admin/admin.controller.ts index 6077c19f..54d36d8c 100644 --- a/apps/api/src/app/admin/admin.controller.ts +++ b/apps/api/src/app/admin/admin.controller.ts @@ -16,7 +16,7 @@ import { } from '@ghostfolio/common/interfaces'; import { hasPermission, permissions } from '@ghostfolio/common/permissions'; import type { - MarketDataQuery, + MarketDataPreset, RequestWithUser } from '@ghostfolio/common/types'; import { @@ -252,7 +252,7 @@ export class AdminController { @UseGuards(AuthGuard('jwt')) public async getMarketData( @Query('assetSubClasses') filterByAssetSubClasses?: string, - @Query('queryId') queryId?: MarketDataQuery, + @Query('presetId') presetId?: MarketDataPreset, @Query('skip') skip?: number, @Query('sortColumn') sortColumn?: string, @Query('sortDirection') sortDirection?: Prisma.SortOrder, @@ -283,7 +283,7 @@ export class AdminController { return this.adminService.getMarketData({ filters, - queryId, + presetId, sortColumn, sortDirection, skip: isNaN(skip) ? undefined : skip, diff --git a/apps/api/src/app/admin/admin.service.ts b/apps/api/src/app/admin/admin.service.ts index 003f930b..996914c4 100644 --- a/apps/api/src/app/admin/admin.service.ts +++ b/apps/api/src/app/admin/admin.service.ts @@ -17,7 +17,7 @@ import { Filter, UniqueAsset } from '@ghostfolio/common/interfaces'; -import { MarketDataQuery } from '@ghostfolio/common/types'; +import { MarketDataPreset } from '@ghostfolio/common/types'; import { BadRequestException, Injectable } from '@nestjs/common'; import { AssetSubClass, Prisma, Property, SymbolProfile } from '@prisma/client'; import { differenceInDays } from 'date-fns'; @@ -104,14 +104,14 @@ export class AdminService { public async getMarketData({ filters, - queryId, + presetId, sortColumn, sortDirection, skip, take = Number.MAX_SAFE_INTEGER }: { filters?: Filter[]; - queryId?: MarketDataQuery; + presetId?: MarketDataPreset; skip?: number; sortColumn?: string; sortDirection?: Prisma.SortOrder; @@ -122,8 +122,8 @@ export class AdminService { const where: Prisma.SymbolProfileWhereInput = {}; if ( - queryId === 'ETF_WITHOUT_COUNTRIES' || - queryId === 'ETF_WITHOUT_SECTORS' + presetId === 'ETF_WITHOUT_COUNTRIES' || + presetId === 'ETF_WITHOUT_SECTORS' ) { filters = [{ id: 'ETF', type: 'ASSET_SUB_CLASS' }]; } @@ -221,12 +221,12 @@ export class AdminService { } ); - if (queryId) { - if (queryId === 'ETF_WITHOUT_COUNTRIES') { + if (presetId) { + if (presetId === 'ETF_WITHOUT_COUNTRIES') { marketData = marketData.filter(({ countriesCount }) => { return countriesCount === 0; }); - } else if (queryId === 'ETF_WITHOUT_SECTORS') { + } else if (presetId === 'ETF_WITHOUT_SECTORS') { marketData = marketData.filter(({ sectorsCount }) => { return sectorsCount === 0; }); diff --git a/apps/client/src/app/components/admin-market-data/admin-market-data.component.ts b/apps/client/src/app/components/admin-market-data/admin-market-data.component.ts index 716b5ff3..df2b8400 100644 --- a/apps/client/src/app/components/admin-market-data/admin-market-data.component.ts +++ b/apps/client/src/app/components/admin-market-data/admin-market-data.component.ts @@ -63,12 +63,12 @@ export class AdminMarketDataComponent { id: 'ETF_WITHOUT_COUNTRIES', label: $localize`ETFs without Countries`, - type: 'QUERY_ID' + type: 'PRESET_ID' }, { id: 'ETF_WITHOUT_SECTORS', label: $localize`ETFs without Sectors`, - type: 'QUERY_ID' + type: 'PRESET_ID' } ]); public currentDataSource: DataSource; @@ -252,7 +252,7 @@ export class AdminMarketDataComponent this.pageSize = this.activeFilters.length === 1 && - this.activeFilters[0].type === 'QUERY_ID' + this.activeFilters[0].type === 'PRESET_ID' ? undefined : DEFAULT_PAGE_SIZE; diff --git a/apps/client/src/app/services/data.service.ts b/apps/client/src/app/services/data.service.ts index c2952959..3e769dda 100644 --- a/apps/client/src/app/services/data.service.ts +++ b/apps/client/src/app/services/data.service.ts @@ -57,7 +57,7 @@ export class DataService { ACCOUNT: filtersByAccount, ASSET_CLASS: filtersByAssetClass, ASSET_SUB_CLASS: filtersByAssetSubClass, - QUERY_ID: filtersByQueryId, + PRESET_ID: filtersByPresetId, TAG: filtersByTag } = groupBy(filters, (filter) => { return filter.type; @@ -96,8 +96,8 @@ export class DataService { ); } - if (filtersByQueryId) { - params = params.append('queryId', filtersByQueryId[0].id); + if (filtersByPresetId) { + params = params.append('presetId', filtersByPresetId[0].id); } if (filtersByTag) { diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index a7401626..c3f0c9bb 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -888,6 +888,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + About @@ -1030,7 +1034,7 @@ Sicherheits-Token apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 10 + 11 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1042,7 +1046,7 @@ oder apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 19 + 31 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1062,7 +1066,7 @@ Einloggen mit Internet Identity apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 30 + 42 @@ -1070,7 +1074,7 @@ Einloggen mit Google apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 40 + 52 @@ -1078,7 +1082,7 @@ Eingeloggt bleiben apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 49 + 61 @@ -1090,7 +1094,7 @@ apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 59 + 71 @@ -1210,7 +1214,7 @@ Kaufkraft apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 171 + 197 @@ -1218,7 +1222,7 @@ Gesamtvermögen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 244 @@ -1226,7 +1230,7 @@ Performance pro Jahr apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 230,232 + 256,258 @@ -1234,7 +1238,7 @@ Dividenden apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 248 + 274 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1768,6 +1772,10 @@ Cash Bargeld + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 171 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 15 @@ -2858,7 +2866,7 @@ Von der Analyse ausgenommen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 183 + 209 @@ -4134,7 +4142,7 @@ Verbindlichkeiten apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 198 + 224 apps/client/src/app/pages/features/features-page.html @@ -4408,6 +4416,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 60 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 60 + Origin @@ -4508,6 +4520,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 65 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 65 + Region @@ -4608,6 +4624,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 70 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 70 + Available in @@ -4708,6 +4728,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 75,77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 75,77 + ✅ Yes @@ -4808,6 +4832,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 97 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 97 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 @@ -5000,6 +5032,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 118 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 118 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -5096,6 +5132,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 143 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 143 @@ -5288,6 +5332,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 162 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 162 @@ -5480,6 +5532,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 169 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + ❌ No @@ -5580,6 +5636,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 99 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 99 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 122 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 122 @@ -5772,6 +5836,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 133 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 133 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 @@ -5868,6 +5936,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 145 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 152 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 152 @@ -6060,6 +6136,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 164 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 164 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 171 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 171 @@ -6256,6 +6340,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106,107 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106,107 + Self-Hosting @@ -6356,6 +6444,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111,113 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111,113 + Use anonymously @@ -6456,6 +6548,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 138,140 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 138,140 + Free Plan @@ -6556,6 +6652,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157,159 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157,159 + Notes @@ -6656,6 +6756,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 188 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 188 + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. @@ -6756,6 +6860,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 212,215 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 212,215 + Personal Finance Tools @@ -6856,6 +6964,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 284 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 284 + Guides @@ -6933,9 +7045,17 @@ 70 - - Query - Suchanfrage + + Assets + Anlagevermögen + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 184 + + + + Preset + Filtervorlage libs/ui/src/lib/i18n.ts 19 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 25a0a9a0..f1c7d62e 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -889,6 +889,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + About @@ -1031,7 +1035,7 @@ Token de seguridad apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 10 + 11 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1043,7 +1047,7 @@ o apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 19 + 31 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1063,7 +1067,7 @@ Iniciar sesión con Internet Identity apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 30 + 42 @@ -1071,7 +1075,7 @@ Iniciar sesión con Google apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 40 + 52 @@ -1079,7 +1083,7 @@ Seguir conectado apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 49 + 61 @@ -1091,7 +1095,7 @@ apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 59 + 71 @@ -1211,7 +1215,7 @@ Capacidad de compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 171 + 197 @@ -1219,7 +1223,7 @@ Patrimonio neto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 244 @@ -1227,7 +1231,7 @@ Rendimiento anualizado apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 230,232 + 256,258 @@ -1235,7 +1239,7 @@ Dividendo apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 248 + 274 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1769,6 +1773,10 @@ Cash Efectivo + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 171 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 15 @@ -2859,7 +2867,7 @@ Excluido del análisis apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 183 + 209 @@ -4135,7 +4143,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 198 + 224 apps/client/src/app/pages/features/features-page.html @@ -4409,6 +4417,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 60 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 60 + Origin @@ -4509,6 +4521,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 65 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 65 + Region @@ -4609,6 +4625,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 70 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 70 + Available in @@ -4709,6 +4729,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 75,77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 75,77 + ✅ Yes @@ -4809,6 +4833,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 97 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 97 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 @@ -5001,6 +5033,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 118 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 118 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -5097,6 +5133,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 143 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 143 @@ -5289,6 +5333,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 162 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 162 @@ -5481,6 +5533,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 169 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + ❌ No @@ -5581,6 +5637,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 99 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 99 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 122 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 122 @@ -5773,6 +5837,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 133 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 133 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 @@ -5869,6 +5937,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 145 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 152 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 152 @@ -6061,6 +6137,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 164 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 164 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 171 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 171 @@ -6257,6 +6341,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106,107 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106,107 + Self-Hosting @@ -6357,6 +6445,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111,113 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111,113 + Use anonymously @@ -6457,6 +6549,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 138,140 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 138,140 + Free Plan @@ -6557,6 +6653,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157,159 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157,159 + Notes @@ -6657,6 +6757,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 188 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 188 + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. @@ -6757,6 +6861,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 212,215 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 212,215 + Personal Finance Tools @@ -6857,6 +6965,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 284 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 284 + Guides @@ -6934,9 +7046,17 @@ 70 - - Query - Query + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 184 + + + + Preset + Preset libs/ui/src/lib/i18n.ts 19 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index de37f9af..734ff183 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -1180,6 +1180,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + About @@ -1266,7 +1270,7 @@ apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 59 + 71 @@ -1386,7 +1390,7 @@ Jeton de Sécurité apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 10 + 11 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1398,7 +1402,7 @@ ou apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 19 + 31 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1418,7 +1422,7 @@ Se connecter avec Internet Identity apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 30 + 42 @@ -1426,7 +1430,7 @@ Se connecter avec Google apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 40 + 52 @@ -1434,7 +1438,7 @@ Rester connecté apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 49 + 61 @@ -1554,7 +1558,7 @@ Pouvoir d'Achat apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 171 + 197 @@ -1562,7 +1566,7 @@ Exclus de l'Analyse apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 183 + 209 @@ -1570,7 +1574,7 @@ Fortune apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 244 @@ -1578,7 +1582,7 @@ Performance annualisée apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 230,232 + 256,258 @@ -1586,7 +1590,7 @@ Dividende apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 248 + 274 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2140,6 +2144,10 @@ Cash Cash + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 171 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 15 @@ -4134,7 +4142,7 @@ Dettes apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 198 + 224 apps/client/src/app/pages/features/features-page.html @@ -4408,6 +4416,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 60 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 60 + Origin @@ -4508,6 +4520,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 65 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 65 + Region @@ -4608,6 +4624,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 70 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 70 + Available in @@ -4708,6 +4728,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 75,77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 75,77 + ✅ Yes @@ -4808,6 +4832,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 97 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 97 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 @@ -5000,6 +5032,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 118 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 118 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -5096,6 +5132,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 143 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 143 @@ -5288,6 +5332,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 162 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 162 @@ -5480,6 +5532,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 169 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + ❌ No @@ -5580,6 +5636,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 99 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 99 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 122 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 122 @@ -5772,6 +5836,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 133 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 133 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 @@ -5868,6 +5936,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 145 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 152 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 152 @@ -6060,6 +6136,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 164 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 164 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 171 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 171 @@ -6256,6 +6340,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106,107 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106,107 + Self-Hosting @@ -6356,6 +6444,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111,113 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111,113 + Use anonymously @@ -6456,6 +6548,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 138,140 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 138,140 + Free Plan @@ -6556,6 +6652,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157,159 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157,159 + Notes @@ -6656,6 +6756,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 188 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 188 + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. @@ -6756,6 +6860,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 212,215 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 212,215 + Personal Finance Tools @@ -6856,6 +6964,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 284 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 284 + Guides @@ -6933,9 +7045,17 @@ 70 - - Query - Query + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 184 + + + + Preset + Preset libs/ui/src/lib/i18n.ts 19 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index e09f1779..2286a61f 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -889,6 +889,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + About @@ -1031,7 +1035,7 @@ Token di sicurezza apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 10 + 11 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1043,7 +1047,7 @@ oppure apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 19 + 31 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1063,7 +1067,7 @@ Accedi con Internet Identity apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 30 + 42 @@ -1071,7 +1075,7 @@ Accedi con Google apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 40 + 52 @@ -1079,7 +1083,7 @@ Rimani connesso apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 49 + 61 @@ -1091,7 +1095,7 @@ apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 59 + 71 @@ -1211,7 +1215,7 @@ Potere d'acquisto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 171 + 197 @@ -1219,7 +1223,7 @@ Patrimonio netto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 244 @@ -1227,7 +1231,7 @@ Prestazioni annualizzate apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 230,232 + 256,258 @@ -1235,7 +1239,7 @@ Dividendo apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 248 + 274 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1769,6 +1773,10 @@ Cash Contanti + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 171 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 15 @@ -2851,7 +2859,7 @@ Escluso dall'analisi apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 183 + 209 @@ -4135,7 +4143,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 198 + 224 apps/client/src/app/pages/features/features-page.html @@ -4409,6 +4417,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 60 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 60 + Origin @@ -4509,6 +4521,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 65 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 65 + Region @@ -4609,6 +4625,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 70 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 70 + Available in @@ -4709,6 +4729,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 75,77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 75,77 + ✅ Yes @@ -4809,6 +4833,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 97 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 97 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 @@ -5001,6 +5033,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 118 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 118 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -5097,6 +5133,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 143 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 143 @@ -5289,6 +5333,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 162 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 162 @@ -5481,6 +5533,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 169 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + ❌ No @@ -5581,6 +5637,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 99 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 99 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 122 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 122 @@ -5773,6 +5837,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 133 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 133 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 @@ -5869,6 +5937,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 145 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 152 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 152 @@ -6061,6 +6137,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 164 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 164 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 171 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 171 @@ -6257,6 +6341,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106,107 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106,107 + Self-Hosting @@ -6357,6 +6445,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111,113 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111,113 + Use anonymously @@ -6457,6 +6549,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 138,140 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 138,140 + Free Plan @@ -6557,6 +6653,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157,159 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157,159 + Notes @@ -6657,6 +6757,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 188 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 188 + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. @@ -6757,6 +6861,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 212,215 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 212,215 + Personal Finance Tools @@ -6857,6 +6965,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 284 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 284 + Guides @@ -6934,9 +7046,17 @@ 70 - - Query - Query + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 184 + + + + Preset + Preset libs/ui/src/lib/i18n.ts 19 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index df6abc18..b58da746 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -888,6 +888,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + About @@ -1030,7 +1034,7 @@ Beveiligingstoken apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 10 + 11 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1042,7 +1046,7 @@ of apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 19 + 31 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1062,7 +1066,7 @@ Aanmelden met Internet Identity apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 30 + 42 @@ -1070,7 +1074,7 @@ Aanmelden met Google apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 40 + 52 @@ -1078,7 +1082,7 @@ Aangemeld blijven apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 49 + 61 @@ -1090,7 +1094,7 @@ apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 59 + 71 @@ -1210,7 +1214,7 @@ Koopkracht apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 171 + 197 @@ -1218,7 +1222,7 @@ Netto Waarde apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 244 @@ -1226,7 +1230,7 @@ Jaarlijks rendement apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 230,232 + 256,258 @@ -1234,7 +1238,7 @@ Dividend apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 248 + 274 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1768,6 +1772,10 @@ Cash Contant geld + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 171 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 15 @@ -2858,7 +2866,7 @@ Uitgesloten van analyse apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 183 + 209 @@ -4134,7 +4142,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 198 + 224 apps/client/src/app/pages/features/features-page.html @@ -4408,6 +4416,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 60 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 60 + Origin @@ -4508,6 +4520,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 65 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 65 + Region @@ -4608,6 +4624,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 70 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 70 + Available in @@ -4708,6 +4728,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 75,77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 75,77 + ✅ Yes @@ -4808,6 +4832,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 97 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 97 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 @@ -5000,6 +5032,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 118 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 118 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -5096,6 +5132,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 143 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 143 @@ -5288,6 +5332,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 162 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 162 @@ -5480,6 +5532,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 169 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + ❌ No @@ -5580,6 +5636,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 99 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 99 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 122 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 122 @@ -5772,6 +5836,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 133 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 133 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 @@ -5868,6 +5936,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 145 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 152 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 152 @@ -6060,6 +6136,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 164 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 164 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 171 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 171 @@ -6256,6 +6340,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106,107 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106,107 + Self-Hosting @@ -6356,6 +6444,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111,113 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111,113 + Use anonymously @@ -6456,6 +6548,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 138,140 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 138,140 + Free Plan @@ -6556,6 +6652,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157,159 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157,159 + Notes @@ -6656,6 +6756,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 188 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 188 + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. @@ -6756,6 +6860,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 212,215 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 212,215 + Personal Finance Tools @@ -6856,6 +6964,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 284 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 284 + Guides @@ -6933,9 +7045,17 @@ 70 - - Query - Query + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 184 + + + + Preset + Preset libs/ui/src/lib/i18n.ts 19 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 9755caac..d61c8880 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -1060,6 +1060,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + About @@ -1146,7 +1150,7 @@ apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 59 + 71 @@ -1282,7 +1286,7 @@ Token de Segurança apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 10 + 11 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1294,7 +1298,7 @@ ou apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 19 + 31 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1314,7 +1318,7 @@ Iniciar sessão com Internet Identity apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 30 + 42 @@ -1322,7 +1326,7 @@ Iniciar sessão com Google apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 40 + 52 @@ -1330,7 +1334,7 @@ Manter sessão iniciada apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 49 + 61 @@ -1450,7 +1454,7 @@ Poder de Compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 171 + 197 @@ -1458,7 +1462,7 @@ Excluído da Análise apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 183 + 209 @@ -1466,7 +1470,7 @@ Valor Líquido apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 244 @@ -1474,7 +1478,7 @@ Desempenho Anual apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 230,232 + 256,258 @@ -1482,7 +1486,7 @@ Dividendo apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 248 + 274 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2104,6 +2108,10 @@ Cash Dinheiro + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 171 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 15 @@ -4134,7 +4142,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 198 + 224 apps/client/src/app/pages/features/features-page.html @@ -4408,6 +4416,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 60 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 60 + Origin @@ -4508,6 +4520,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 65 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 65 + Region @@ -4608,6 +4624,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 70 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 70 + Available in @@ -4708,6 +4728,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 75,77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 75,77 + ✅ Yes @@ -4808,6 +4832,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 97 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 97 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 @@ -5000,6 +5032,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 118 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 118 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -5096,6 +5132,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 143 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 143 @@ -5288,6 +5332,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 162 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 162 @@ -5480,6 +5532,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 169 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + ❌ No @@ -5580,6 +5636,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 99 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 99 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 122 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 122 @@ -5772,6 +5836,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 133 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 133 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 @@ -5868,6 +5936,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 145 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 152 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 152 @@ -6060,6 +6136,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 164 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 164 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 171 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 171 @@ -6256,6 +6340,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106,107 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106,107 + Self-Hosting @@ -6356,6 +6444,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111,113 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111,113 + Use anonymously @@ -6456,6 +6548,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 138,140 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 138,140 + Free Plan @@ -6556,6 +6652,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157,159 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157,159 + Notes @@ -6656,6 +6756,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 188 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 188 + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. @@ -6756,6 +6860,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 212,215 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 212,215 + Personal Finance Tools @@ -6856,6 +6964,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 284 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 284 + Guides @@ -6933,9 +7045,17 @@ 70 - - Query - Query + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 184 + + + + Preset + Preset libs/ui/src/lib/i18n.ts 19 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 717a9c62..0b84474c 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -824,6 +824,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + About @@ -953,7 +957,7 @@ Security Token apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 10 + 11 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -964,7 +968,7 @@ or apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 19 + 31 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -983,21 +987,21 @@ Sign in with Internet Identity apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 30 + 42 Sign in with Google apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 40 + 52 Stay signed in apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 49 + 61 @@ -1008,7 +1012,7 @@ apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 59 + 71 @@ -1114,28 +1118,28 @@ Buying Power apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 171 + 197 Net Worth apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 244 Annualized Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 230,232 + 256,258 Dividend apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 248 + 274 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1621,6 +1625,10 @@ Cash + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 171 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 15 @@ -2595,7 +2603,7 @@ Excluded from Analysis apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 183 + 209 @@ -3747,7 +3755,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 198 + 224 apps/client/src/app/pages/features/features-page.html @@ -3979,6 +3987,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106,107 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106,107 + Personal Finance Tools @@ -4085,6 +4097,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 284 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 284 + Region @@ -4184,6 +4200,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 70 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 70 + Guides @@ -4290,6 +4310,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 212,215 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 212,215 + Glossary @@ -4396,6 +4420,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 97 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 97 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 @@ -4588,6 +4620,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 118 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 118 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -4684,6 +4720,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 143 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 143 @@ -4876,6 +4920,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 162 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 162 @@ -5068,6 +5120,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 169 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + Origin @@ -5167,6 +5223,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 65 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 65 + Available in @@ -5266,6 +5326,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 75,77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 75,77 + Discover Open Source Alternatives for Personal Finance Tools @@ -5372,6 +5436,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 60 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 60 + ❌ No @@ -5471,6 +5539,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 99 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 99 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 122 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 122 @@ -5663,6 +5739,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 133 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 133 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 @@ -5759,6 +5839,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 145 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 145 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 152 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 152 @@ -5951,6 +6039,14 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 164 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 164 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 171 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 171 @@ -6146,6 +6242,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157,159 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157,159 + Use anonymously @@ -6245,6 +6345,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 138,140 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 138,140 + Notes @@ -6344,6 +6448,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 188 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 188 + Self-Hosting @@ -6443,6 +6551,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111,113 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111,113 + Mortgages, personal loans, credit cards @@ -6497,13 +6609,20 @@ 70 - - Query + + Preset libs/ui/src/lib/i18n.ts 19 + + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 184 + + - \ No newline at end of file + diff --git a/libs/common/src/lib/interfaces/filter.interface.ts b/libs/common/src/lib/interfaces/filter.interface.ts index f6c83a23..a6bc17c4 100644 --- a/libs/common/src/lib/interfaces/filter.interface.ts +++ b/libs/common/src/lib/interfaces/filter.interface.ts @@ -5,7 +5,7 @@ export interface Filter { | 'ACCOUNT' | 'ASSET_CLASS' | 'ASSET_SUB_CLASS' - | 'QUERY_ID' + | 'PRESET_ID' | 'SYMBOL' | 'TAG'; } diff --git a/libs/common/src/lib/types/index.ts b/libs/common/src/lib/types/index.ts index 79566bcf..063bea05 100644 --- a/libs/common/src/lib/types/index.ts +++ b/libs/common/src/lib/types/index.ts @@ -5,7 +5,7 @@ import type { ColorScheme } from './color-scheme.type'; import type { DateRange } from './date-range.type'; import type { Granularity } from './granularity.type'; import type { GroupBy } from './group-by.type'; -import type { MarketDataQuery } from './market-data-query.type'; +import type { MarketDataPreset } from './market-data-preset.type'; import type { MarketState } from './market-state.type'; import type { Market } from './market.type'; import type { OrderWithAccount } from './order-with-account.type'; @@ -24,7 +24,7 @@ export type { Granularity, GroupBy, Market, - MarketDataQuery, + MarketDataPreset, MarketState, OrderWithAccount, RequestWithUser, diff --git a/libs/common/src/lib/types/market-data-preset.type.ts b/libs/common/src/lib/types/market-data-preset.type.ts new file mode 100644 index 00000000..351f863d --- /dev/null +++ b/libs/common/src/lib/types/market-data-preset.type.ts @@ -0,0 +1 @@ +export type MarketDataPreset = 'ETF_WITHOUT_COUNTRIES' | 'ETF_WITHOUT_SECTORS'; diff --git a/libs/common/src/lib/types/market-data-query.type.ts b/libs/common/src/lib/types/market-data-query.type.ts deleted file mode 100644 index fa14af61..00000000 --- a/libs/common/src/lib/types/market-data-query.type.ts +++ /dev/null @@ -1 +0,0 @@ -export type MarketDataQuery = 'ETF_WITHOUT_COUNTRIES' | 'ETF_WITHOUT_SECTORS'; diff --git a/libs/ui/src/lib/i18n.ts b/libs/ui/src/lib/i18n.ts index cd879497..cf36e99b 100644 --- a/libs/ui/src/lib/i18n.ts +++ b/libs/ui/src/lib/i18n.ts @@ -16,7 +16,7 @@ const locales = { MONTH: $localize`Month`, MONTHS: $localize`Months`, OTHER: $localize`Other`, - QUERY_ID: $localize`Query`, + PRESET_ID: $localize`Preset`, RETIREMENT_PROVISION: $localize`Retirement Provision`, SATELLITE: $localize`Satellite`, SECURITIES: $localize`Securities`,